File tree 2 files changed +13
-2
lines changed
2 files changed +13
-2
lines changed Original file line number Diff line number Diff line change @@ -52,7 +52,7 @@ target_compile_options(${PROJECT_NAME} PUBLIC
52
52
)
53
53
elseif (UNIX AND NOT APPLE )
54
54
target_compile_options (${PROJECT_NAME} PUBLIC
55
- -Werror
55
+ # -Werror
56
56
-Wno-deprecated-declarations
57
57
-Wno-unused-value
58
58
)
Original file line number Diff line number Diff line change @@ -13,11 +13,22 @@ juce_add_plugin("${BaseTargetName}"
13
13
COPY_PLUGIN_AFTER_BUILD FALSE
14
14
PLUGIN_MANUFACTURER_CODE DGSB
15
15
PLUGIN_CODE Dexd
16
- FORMATS AU VST3 Standalone
17
16
PRODUCT_NAME "Dexed"
18
17
DESCRIPTION "Dexed FM Synth"
19
18
)
20
19
20
+ set (DEXED_JUCE_FORMATS Standalone)
21
+
22
+ if (NOT DEXED_SKIP_VST3)
23
+ list (APPEND DEXED_JUCE_FORMATS VST3)
24
+ endif ()
25
+
26
+ if (APPLE )
27
+ list (APPEND DEXED_JUCE_FORMATS AU)
28
+ endif ()
29
+
30
+ message (STATUS "Building Dexed in formats: ${DEXED_JUCE_FORMATS} " )
31
+
21
32
juce_generate_juce_header(${PROJECT_NAME} )
22
33
23
34
target_sources (${BaseTargetName} PRIVATE
You can’t perform that action at this time.
0 commit comments