diff options
Diffstat (limited to 'llama.cpp/tools/fit-params/CMakeLists.txt')
| -rw-r--r-- | llama.cpp/tools/fit-params/CMakeLists.txt | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/llama.cpp/tools/fit-params/CMakeLists.txt b/llama.cpp/tools/fit-params/CMakeLists.txt new file mode 100644 index 0000000..34c3373 --- /dev/null +++ b/llama.cpp/tools/fit-params/CMakeLists.txt @@ -0,0 +1,8 @@ +set(TARGET llama-fit-params) +add_executable(${TARGET} fit-params.cpp) +target_link_libraries(${TARGET} PRIVATE common llama ${CMAKE_THREAD_LIBS_INIT}) +target_compile_features(${TARGET} PRIVATE cxx_std_17) + +if(LLAMA_TOOLS_INSTALL) + install(TARGETS ${TARGET} RUNTIME) +endif() |
