Files
longhaul.cpp/examples/gen-docs/CMakeLists.txt
T
2026-07-29 01:00:10 -05:00

6 lines
241 B
CMake

set(TARGET llama-gen-docs)
add_executable(${TARGET} gen-docs.cpp)
install(TARGETS ${TARGET} RUNTIME)
target_link_libraries(${TARGET} PRIVATE llama-common llama ${CMAKE_THREAD_LIBS_INIT})
target_compile_features(${TARGET} PRIVATE cxx_std_17)