llama.cpp/examples/speculative-simple/CMakeLists.txt
2024-11-21 16:09:40 +02:00

6 lines
255 B
CMake

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_11)