Files
longhaul.cpp/examples/speculative-simple/CMakeLists.txt
T
2026-07-29 01:00:10 -05:00

6 lines
261 B
CMake

set(TARGET llama-speculative-simple)
add_executable(${TARGET} speculative-simple.cpp)
install(TARGETS ${TARGET} RUNTIME)
target_link_libraries(${TARGET} PRIVATE llama-common llama ${CMAKE_THREAD_LIBS_INIT})
target_compile_features(${TARGET} PRIVATE cxx_std_17)