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 ed19c2c commit 8ad5805Copy full SHA for 8ad5805
CMakeLists.txt
@@ -84,6 +84,14 @@ target_compile_definitions(pluginval PRIVATE
84
JUCE_GUI_BASICS_INCLUDE_XHEADERS=1
85
VERSION="${CURRENT_VERSION}")
86
87
+if(MSVC)
88
+ // Statically link the runtime libraries
89
+ target_compile_options(pluginval PRIVATE
90
+ $<$<CONFIG:>:/MT>
91
+ $<$<CONFIG:Debug>:/MTd>
92
+ $<$<CONFIG:Release>:/MT>)
93
+endif()
94
+
95
target_link_libraries(pluginval PRIVATE
96
juce::juce_audio_devices
97
juce::juce_audio_processors
0 commit comments