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

7 lines
310 B
CMake
Raw Normal View History

set(TARGET llama-quantize-stats)
add_executable(${TARGET} quantize-stats.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)
2024-11-29 21:54:58 +01:00
target_compile_features(${TARGET} PRIVATE cxx_std_17)