summaryrefslogtreecommitdiff
path: root/llama.cpp/tools/perplexity/CMakeLists.txt
blob: 12b28b2be4320c37f0a7a74ecfe81db900366a50 (plain)
1
2
3
4
5
6
7
8
set(TARGET llama-perplexity)
add_executable(${TARGET} perplexity.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()