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

7 lines
292 B
CMake
Raw Normal View History

2023-03-25 20:26:40 +02:00
set(TARGET quantize)
add_executable(${TARGET} quantize.cpp)
2023-07-19 15:01:11 +08:00
install(TARGETS ${TARGET} RUNTIME)
target_link_libraries(${TARGET} PRIVATE llama build_info ${CMAKE_THREAD_LIBS_INIT})
target_include_directories(${TARGET} PRIVATE ../../common)
2023-03-25 20:26:40 +02:00
target_compile_features(${TARGET} PRIVATE cxx_std_11)