dashboard
repositories
filestore
activity
search
login
main
/
stable-diffusion.cpp
summary
reflog
commits
tree
tickets
docs
forks
compare
blame
|
history
|
raw
initial
fszontagh
2024-02-24
ae7501f93285c030251aaf56f224bea178447f3c
[stable-diffusion.cpp.git]
/
examples
/
cli
/
CMakeLists.txt
1
2
3
4
5
6
set(TARGET sd)
add_executable(${TARGET} main.cpp)
install(TARGETS ${TARGET} RUNTIME)
target_link_libraries(${TARGET} PRIVATE stable-diffusion ${CMAKE_THREAD_LIBS_INIT})
target_compile_features(${TARGET} PUBLIC cxx_std_11)