Files
llama.cpp/examples/beam-search/CMakeLists.txt
T

6 lines
235 B
CMake
Raw Normal View History

set(TARGET beam-search)
add_executable(${TARGET} beam-search.cpp)
2023-08-25 11:18:48 -04:00
install(TARGETS ${TARGET} RUNTIME)
target_link_libraries(${TARGET} PRIVATE common llama ${CMAKE_THREAD_LIBS_INIT})
target_compile_features(${TARGET} PRIVATE cxx_std_11)