From b6d44c7250d4df14261a4ef36113b0b9603c8004 Mon Sep 17 00:00:00 2001 From: Seas0 Date: Sat, 9 Aug 2025 16:05:13 +0800 Subject: [PATCH] chore: rename the main binary to avoid conflict --- examples/cli/CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/cli/CMakeLists.txt b/examples/cli/CMakeLists.txt index 4861bd3c8..c32861e4b 100644 --- a/examples/cli/CMakeLists.txt +++ b/examples/cli/CMakeLists.txt @@ -1,6 +1,6 @@ -set(TARGET sd) +set(TARGET sd-cli) 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) \ No newline at end of file +target_compile_features(${TARGET} PUBLIC cxx_std_11)