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