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 216b3ac commit 3cf6d85Copy full SHA for 3cf6d85
CMakeLists.txt
@@ -333,7 +333,7 @@ endif()
333
if(BSD)
334
include_directories(/usr/local/include)
335
link_directories(/usr/local/lib)
336
-add_compile_definitions(BSD=1 ENABLE_OPUS=0)
+add_compile_definitions(BSD=1)
337
endif()
338
339
list(APPEND PLUGDATA_COMPILE_DEFINITIONS JUCE_MODAL_LOOPS_PERMITTED=1)
Libraries/CMakeLists.txt
@@ -18,6 +18,10 @@ if(MSVC)
18
add_compile_options(/experimental:c11atomics)
19
20
21
+if(BSD)
22
+ add_compile_definitions(ENABLE_OPUS=0)
23
+endif()
24
+
25
cmake_policy(SET CMP0091 NEW)
26
set(CMAKE_MSVC_RUNTIME_LIBRARY "MultiThreaded$<$<CONFIG:Debug>:Debug>")
27
0 commit comments