Files
llama.cpp/examples/run/CMakeLists.txt
T

6 lines
253 B
CMake
Raw Normal View History

2024-11-25 16:56:24 -05:00
set(TARGET llama-run)
2025-01-18 14:42:31 +00:00
add_executable(${TARGET} run.cpp linenoise.cpp/linenoise.cpp)
2024-11-25 16:56:24 -05:00
install(TARGETS ${TARGET} RUNTIME)
target_link_libraries(${TARGET} PRIVATE common llama ${CMAKE_THREAD_LIBS_INIT})
2024-11-29 21:54:58 +01:00
target_compile_features(${TARGET} PRIVATE cxx_std_17)