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 95bede6 commit 2b97222Copy full SHA for 2b97222
1 file changed
CMakeLists.txt
@@ -49,6 +49,12 @@ if (WITH_THREAD_SANITIZER)
49
endif ()
50
51
52
+# Disable rtcheck if sanitizers is enabled
53
+if (WITH_ADDRESS_SANITIZER OR WITH_THREAD_SANITIZER)
54
+ set(PLUGINVAL_ENABLE_RTCHECK OFF CACHE BOOL "Disable rtcheck when using sanitizers" FORCE)
55
+ message(STATUS "Disabling rtcheck because a sanitizer is enabled")
56
+endif()
57
+
58
# Adds all the module sources so they appear correctly in the IDE
59
set_property(GLOBAL PROPERTY USE_FOLDERS YES)
60
option(JUCE_ENABLE_MODULE_SOURCE_GROUPS "Enable Module Source Groups" ON)
0 commit comments