/ examples / quantize-stats / CMakeLists.txt
CMakeLists.txt
1  set(TARGET llama-quantize-stats)
2  add_executable(${TARGET} quantize-stats.cpp)
3  install(TARGETS ${TARGET} RUNTIME)
4  target_link_libraries(${TARGET} PRIVATE llama build_info ${CMAKE_THREAD_LIBS_INIT})
5  target_include_directories(${TARGET} PRIVATE ../../common)
6  target_compile_features(${TARGET} PRIVATE cxx_std_11)