Files
llama.cpp/examples/gen-docs/CMakeLists.txt
T

6 lines
235 B
CMake
Raw Normal View History

2024-09-07 20:43:51 +02:00
set(TARGET llama-gen-docs)
add_executable(${TARGET} gen-docs.cpp)
install(TARGETS ${TARGET} RUNTIME)
target_link_libraries(${TARGET} PRIVATE common llama ${CMAKE_THREAD_LIBS_INIT})
2024-11-29 21:54:58 +01:00
target_compile_features(${TARGET} PRIVATE cxx_std_17)