mirror of
https://github.com/ggml-org/llama.cpp.git
synced 2025-10-27 08:21:30 +00:00
14 lines
416 B
CMake
14 lines
416 B
CMake
set(TARGET llama-imatrix)
|
|
add_executable(${TARGET} imatrix.cpp)
|
|
target_link_libraries(${TARGET} PRIVATE common llama ${CMAKE_THREAD_LIBS_INIT})
|
|
target_compile_features(${TARGET} PRIVATE cxx_std_17)
|
|
|
|
if(LLAMA_TOOLS_INSTALL)
|
|
install(TARGETS ${TARGET} RUNTIME)
|
|
endif()
|
|
|
|
if (CMAKE_SYSTEM_NAME MATCHES "AIX")
|
|
# AIX's flock() function comes from libbsd.a
|
|
target_link_libraries(${TARGET} PRIVATE -lbsd)
|
|
endif()
|