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