|
|
|
@@ -1093,6 +1093,9 @@ endif |
|
|
|
# Rack code is not tested for this flag, unset it |
|
|
|
BUILD_CXX_FLAGS += -U_GLIBCXX_ASSERTIONS -Wp,-U_GLIBCXX_ASSERTIONS |
|
|
|
|
|
|
|
# Ignore bad behaviour from Rack API |
|
|
|
BUILD_CXX_FLAGS += -Wno-format-security |
|
|
|
|
|
|
|
ifeq ($(WASM),true) |
|
|
|
BUILD_CXX_FLAGS += -fexceptions |
|
|
|
endif |
|
|
|
@@ -1225,9 +1228,13 @@ VST2_RESOURCES = $(PLUGIN_LIST:%=../bin/CardinalFX.vst/Contents/Resources/Plugi |
|
|
|
VST2_RESOURCES += $(PLUGIN_LIST:%=../bin/CardinalSynth.vst/Contents/Resources/PluginManifests/%.json) |
|
|
|
VST2_RESOURCES += $(RESOURCE_FILES:%=../bin/CardinalFX.vst/Contents/Resources/%) |
|
|
|
VST2_RESOURCES += $(RESOURCE_FILES:%=../bin/CardinalSynth.vst/Contents/Resources/%) |
|
|
|
CLAP_RESOURCES = $(PLUGIN_LIST:%=../bin/CardinalFX.clap/Contents/Resources/PluginManifests/%.json) |
|
|
|
CLAP_RESOURCES += $(RESOURCE_FILES:%=../bin/CardinalFX.clap/Contents/Resources/%) |
|
|
|
else |
|
|
|
VST2_RESOURCES = $(PLUGIN_LIST:%=../bin/Cardinal.vst/resources/PluginManifests/%.json) |
|
|
|
VST2_RESOURCES += $(RESOURCE_FILES:%=../bin/Cardinal.vst/resources/%) |
|
|
|
CLAP_RESOURCES = $(PLUGIN_LIST:%=../bin/Cardinal.clap/resources/PluginManifests/%.json) |
|
|
|
CLAP_RESOURCES += $(RESOURCE_FILES:%=../bin/Cardinal.clap/resources/%) |
|
|
|
endif |
|
|
|
|
|
|
|
VST3_RESOURCES = $(PLUGIN_LIST:%=../bin/Cardinal.vst3/Contents/Resources/PluginManifests/%.json) |
|
|
|
@@ -1239,7 +1246,7 @@ VST3_RESOURCES += $(RESOURCE_FILES:%=../bin/CardinalSynth.vst3/Contents/Resource |
|
|
|
|
|
|
|
endif |
|
|
|
|
|
|
|
resources: $(LV2_RESOURCES) $(VST2_RESOURCES) $(VST3_RESOURCES) |
|
|
|
resources: $(LV2_RESOURCES) $(VST2_RESOURCES) $(VST3_RESOURCES) $(CLAP_RESOURCES) |
|
|
|
|
|
|
|
../bin/Cardinal.lv2/resources/%: % |
|
|
|
-@mkdir -p "$(shell dirname $@)" |
|
|
|
@@ -1308,6 +1315,10 @@ ifeq ($(MACOS),true) |
|
|
|
-@mkdir -p "$(shell dirname $@)" |
|
|
|
$(SILENT)ln -sf $(abspath $<) $@ |
|
|
|
|
|
|
|
../bin/CardinalFX.clap/Contents/Resources/%: % |
|
|
|
-@mkdir -p "$(shell dirname $@)" |
|
|
|
$(SILENT)ln -sf $(abspath $<) $@ |
|
|
|
|
|
|
|
../bin/CardinalSynth.vst/Contents/Resources/%: % |
|
|
|
-@mkdir -p "$(shell dirname $@)" |
|
|
|
$(SILENT)ln -sf $(abspath $<) $@ |
|
|
|
@@ -1316,6 +1327,10 @@ ifeq ($(MACOS),true) |
|
|
|
-@mkdir -p "$(shell dirname $@)" |
|
|
|
$(SILENT)ln -sf $(abspath $<) $@ |
|
|
|
|
|
|
|
../bin/CardinalFX.clap/Contents/Resources/PluginManifests/%.json: %/plugin.json |
|
|
|
-@mkdir -p "$(shell dirname $@)" |
|
|
|
$(SILENT)ln -sf $(abspath $<) $@ |
|
|
|
|
|
|
|
../bin/CardinalSynth.vst/Contents/Resources/PluginManifests/%.json: %/plugin.json |
|
|
|
-@mkdir -p "$(shell dirname $@)" |
|
|
|
$(SILENT)ln -sf $(abspath $<) $@ |
|
|
|
@@ -1324,9 +1339,17 @@ else |
|
|
|
-@mkdir -p "$(shell dirname $@)" |
|
|
|
$(SILENT)ln -sf $(abspath $<) $@ |
|
|
|
|
|
|
|
../bin/Cardinal.clap/resources/%: % |
|
|
|
-@mkdir -p "$(shell dirname $@)" |
|
|
|
$(SILENT)ln -sf $(abspath $<) $@ |
|
|
|
|
|
|
|
../bin/Cardinal.vst/resources/PluginManifests/%.json: %/plugin.json |
|
|
|
-@mkdir -p "$(shell dirname $@)" |
|
|
|
$(SILENT)ln -sf $(abspath $<) $@ |
|
|
|
|
|
|
|
../bin/Cardinal.clap/resources/PluginManifests/%.json: %/plugin.json |
|
|
|
-@mkdir -p "$(shell dirname $@)" |
|
|
|
$(SILENT)ln -sf $(abspath $<) $@ |
|
|
|
endif |
|
|
|
|
|
|
|
# -------------------------------------------------------------- |
|
|
|
|