Fix missing resources

Signed-off-by: falkTX <falktx@falktx.com>
This commit is contained in:
falkTX 2022-02-02 18:14:23 +00:00
parent 46f08d1651
commit 2f626d8733
No known key found for this signature in database
GPG key ID: CDBAA37ABC74FBA0
2 changed files with 22 additions and 5 deletions

View file

@ -90,7 +90,7 @@ Below is a list of artwork licenses from plugins
| Autinn/* | GPL-3.0-or-later | No artwork specific license provided |
| BaconPlugs/* | GPL-3.0-or-later | No artwork specific license provided |
| BaconPlugs/midi/* | CC-BY-SA-3.0-DE | |
| BaconPlugs/midi/beeth/* | ??? | Taken from http://www.jsbach.net/ |
| BaconPlugs/midi/beeth/* | ??? | Unused in Cardinal, taken from http://www.jsbach.net/ |
| BaconPlugs/1f953.svg | CC-BY-4.0 | |
| BaconPlugs/Keypunch029.json | OFL-1.1 | |
| Bidoo/* | CC-BY-NC-ND-4.0 | [Special permission granted for runtime dark mode](https://github.com/sebastien-bouffier/Bidoo/issues/191) |

View file

@ -828,11 +828,28 @@ else
PLUGIN_LIST = $(subst /plugin.json,,$(wildcard */plugin.json))
endif
UNWANTED_FILES = HetrickCV/res/illustrator - deprecated/MyModule.svg
RESOURCE_FILES = \
$(wildcard */presets) \
$(filter-out $(UNWANTED_FILES), \
$(wildcard */res/*.svg) \
$(filter-out HetrickCV/res/illustrator - deprecated/MyModule.svg,$(wildcard */res/*/*.svg)) \
$(wildcard */res/*.ttf) $(wildcard */res/*/*.ttf)
$(wildcard */res/*/*.svg) \
$(wildcard */res/*/*/*.svg) \
$(wildcard */res/*.ttf) \
$(wildcard */res/*/*.ttf) \
$(wildcard */res/*/*/*.ttf))
RESOURCE_FILES += $(wildcard */presets)
RESOURCE_FILES += BaconPlugs/res/Keypunch029.json
RESOURCE_FILES += BaconPlugs/res/midi/chopin
RESOURCE_FILES += BaconPlugs/res/midi/debussy
RESOURCE_FILES += BaconPlugs/res/midi/goldberg
RESOURCE_FILES += Cardinal/res/Miku/Miku.png
RESOURCE_FILES += DrumKit/res/samples
RESOURCE_FILES += MindMeldModular/res/ShapeMaster/CommunityPresets
RESOURCE_FILES += MindMeldModular/res/ShapeMaster/CommunityShapes
RESOURCE_FILES += MindMeldModular/res/ShapeMaster/MindMeldPresets
RESOURCE_FILES += MindMeldModular/res/ShapeMaster/MindMeldShapes
PLUGIN_RESOURCES =
PLUGIN_RESOURCES += $(PLUGIN_LIST:%=../bin/CardinalFX.lv2/resources/PluginManifests/%.json)