Skip to content

Commit 1de9b5d

Browse files
update cmake
1 parent 69a16ef commit 1de9b5d

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

examples/lookup/CMakeLists.txt

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,21 @@ add_executable(${TARGET} lookup.cpp)
33
install(TARGETS ${TARGET} RUNTIME)
44
target_link_libraries(${TARGET} PRIVATE common llama ${CMAKE_THREAD_LIBS_INIT})
55
target_compile_features(${TARGET} PRIVATE cxx_std_11)
6+
7+
set(TARGET lookup-create)
8+
add_executable(${TARGET} lookup.cpp)
9+
install(TARGETS ${TARGET} RUNTIME)
10+
target_link_libraries(${TARGET} PRIVATE common llama ${CMAKE_THREAD_LIBS_INIT})
11+
target_compile_features(${TARGET} PRIVATE cxx_std_11)
12+
13+
set(TARGET lookup-merge)
14+
add_executable(${TARGET} lookup.cpp)
15+
install(TARGETS ${TARGET} RUNTIME)
16+
target_link_libraries(${TARGET} PRIVATE common llama ${CMAKE_THREAD_LIBS_INIT})
17+
target_compile_features(${TARGET} PRIVATE cxx_std_11)
18+
19+
set(TARGET lookup-stats)
20+
add_executable(${TARGET} lookup.cpp)
21+
install(TARGETS ${TARGET} RUNTIME)
22+
target_link_libraries(${TARGET} PRIVATE common llama ${CMAKE_THREAD_LIBS_INIT})
23+
target_compile_features(${TARGET} PRIVATE cxx_std_11)

0 commit comments

Comments
 (0)