llama.cpp/examples/perplexity/CMakeLists.txt

5 lines
198 B
CMake
Raw Normal View History

set(TARGET perplexity)
add_executable(${TARGET} perplexity.cpp)
target_link_libraries(${TARGET} PRIVATE common llama ${CMAKE_THREAD_LIBS_INIT})
target_compile_features(${TARGET} PRIVATE cxx_std_11)