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 8149774 commit 4925211Copy full SHA for 4925211
demangler/gnu3/CMakeLists.txt
@@ -7,7 +7,11 @@ file(GLOB SOURCES
7
*.c
8
*.h)
9
10
-add_library(${PROJECT_NAME} SHARED ${SOURCES})
+if(DEMO)
11
+ add_library(${PROJECT_NAME} STATIC ${SOURCES})
12
+else()
13
+ add_library(${PROJECT_NAME} SHARED ${SOURCES})
14
+endif()
15
16
if(NOT BN_INTERNAL_BUILD)
17
# Out-of-tree build
demangler/msvc/CMakeLists.txt
0 commit comments