aboutsummaryrefslogtreecommitdiff
path: root/llama.cpp/examples/diffusion/CMakeLists.txt
blob: 396549c8029d9eafa52ea6d26ad9595289d17a29 (plain)
1
2
3
4
5
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)