Files
llama.cpp/tools/quantize/CMakeLists.txt
T

10 lines
331 B
CMake
Raw Normal View History

set(TARGET llama-quantize)
2023-03-25 20:26:40 +02:00
add_executable(${TARGET} quantize.cpp)
target_link_libraries(${TARGET} PRIVATE common llama ${CMAKE_THREAD_LIBS_INIT})
target_include_directories(${TARGET} PRIVATE ../../common)
2024-11-29 21:54:58 +01:00
target_compile_features(${TARGET} PRIVATE cxx_std_17)
if(LLAMA_TOOLS_INSTALL)
install(TARGETS ${TARGET} RUNTIME)
endif()