summaryrefslogtreecommitdiff
path: root/llama.cpp/examples/debug/CMakeLists.txt
blob: 34593072be2c64c10bcbabfb35c3d75d49e26604 (plain)
1
2
3
4
5
set(TARGET llama-debug)
add_executable(${TARGET} debug.cpp)
install(TARGETS ${TARGET} RUNTIME)
target_link_libraries(${TARGET} PRIVATE common llama ${CMAKE_THREAD_LIBS_INIT})
target_compile_features(${TARGET} PRIVATE cxx_std_17)