mirror of
https://github.com/ggml-org/llama.cpp.git
synced 2025-07-27 11:43:35 -04:00
6 lines
245 B
CMake
6 lines
245 B
CMake
![]() |
set(TARGET llama-diffusion-cli)
|
||
|
add_executable(${TARGET} diffusion-cli.cpp)
|
||
|
install(TARGETS ${TARGET} RUNTIME)
|
||
|
target_link_libraries(${TARGET} PRIVATE llama common ${CMAKE_THREAD_LIBS_INIT})
|
||
|
target_compile_features(${TARGET} PRIVATE cxx_std_17)
|