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

7 lines
294 B
CMake
Raw Normal View History

set(TARGET llama-quantize)
2023-03-25 20:26:40 +02:00
add_executable(${TARGET} quantize.cpp)
2023-07-19 15:01:11 +08:00
install(TARGETS ${TARGET} RUNTIME)
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)