Skip to content

Commit 0e9e8a4

Browse files
fix cmake
1 parent bc7a3c0 commit 0e9e8a4

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

examples/lookup/CMakeLists.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,19 +5,19 @@ target_link_libraries(${TARGET} PRIVATE common llama ${CMAKE_THREAD_LIBS_INIT})
55
target_compile_features(${TARGET} PRIVATE cxx_std_11)
66

77
set(TARGET lookup-create)
8-
add_executable(${TARGET} lookup.cpp)
8+
add_executable(${TARGET} lookup-create.cpp)
99
install(TARGETS ${TARGET} RUNTIME)
1010
target_link_libraries(${TARGET} PRIVATE common llama ${CMAKE_THREAD_LIBS_INIT})
1111
target_compile_features(${TARGET} PRIVATE cxx_std_11)
1212

1313
set(TARGET lookup-merge)
14-
add_executable(${TARGET} lookup.cpp)
14+
add_executable(${TARGET} lookup-merge.cpp)
1515
install(TARGETS ${TARGET} RUNTIME)
1616
target_link_libraries(${TARGET} PRIVATE common llama ${CMAKE_THREAD_LIBS_INIT})
1717
target_compile_features(${TARGET} PRIVATE cxx_std_11)
1818

1919
set(TARGET lookup-stats)
20-
add_executable(${TARGET} lookup.cpp)
20+
add_executable(${TARGET} lookup-stats.cpp)
2121
install(TARGETS ${TARGET} RUNTIME)
2222
target_link_libraries(${TARGET} PRIVATE common llama ${CMAKE_THREAD_LIBS_INIT})
2323
target_compile_features(${TARGET} PRIVATE cxx_std_11)

0 commit comments

Comments
 (0)