1set(TARGET llama-quantize)
2add_executable(${TARGET} quantize.cpp)
3target_link_libraries(${TARGET} PRIVATE common llama ${CMAKE_THREAD_LIBS_INIT})
4target_include_directories(${TARGET} PRIVATE ../../common)
5target_compile_features(${TARGET} PRIVATE cxx_std_17)
6
7if(LLAMA_TOOLS_INSTALL)
8 install(TARGETS ${TARGET} RUNTIME)
9endif()