llama.cpp/examples/train-text-from-scratch/CMakeLists.txt
2023-07-19 10:01:11 +03:00

6 lines
259 B
CMake

set(TARGET train-text-from-scratch)
add_executable(${TARGET} train-text-from-scratch.cpp)
install(TARGETS ${TARGET} RUNTIME)
target_link_libraries(${TARGET} PRIVATE common llama ${CMAKE_THREAD_LIBS_INIT})
target_compile_features(${TARGET} PRIVATE cxx_std_11)