Files
llama.cpp/examples/save-load-state/CMakeLists.txt
T

6 lines
249 B
CMake
Raw Normal View History

set(TARGET llama-save-load-state)
add_executable(${TARGET} save-load-state.cpp)
2023-07-19 15:01:11 +08:00
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)