We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 87cdbd5 commit 6bbaf16Copy full SHA for 6bbaf16
.gitignore
@@ -1,10 +1,10 @@
1
build*/
2
+cmake-build-*/
3
test/
4
.vscode/
5
+.idea/
6
.cache/
7
*.swp
-.vscode/
-.idea/
8
*.bat
9
*.bin
10
*.exe
CMakeLists.txt
@@ -149,3 +149,7 @@ if (SD_BUILD_EXAMPLES)
149
add_subdirectory(examples)
150
endif()
151
152
+set(SD_PUBLIC_HEADERS stable-diffusion.h)
153
+set_target_properties(${SD_LIB} PROPERTIES PUBLIC_HEADER "${SD_PUBLIC_HEADERS}")
154
+
155
+install(TARGETS ${SD_LIB} LIBRARY PUBLIC_HEADER)
0 commit comments