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 4181c51 commit da1b605Copy full SHA for da1b605
yoga/CMakeLists.txt
@@ -24,7 +24,11 @@ file(GLOB SOURCES CONFIGURE_DEPENDS
24
${CMAKE_CURRENT_SOURCE_DIR}/**/*.cpp)
25
26
if(BUILD_SHARED_LIBS)
27
- add_library(yogacore SHARED ${SOURCES})
+ if(WIN32)
28
+ add_library(yogacore MODULE ${SOURCES})
29
+ else()
30
+ add_library(yogacore SHARED ${SOURCES})
31
+ endif()
32
else()
33
add_library(yogacore STATIC ${SOURCES})
34
endif()
0 commit comments