Fix missing resources
Signed-off-by: falkTX <falktx@falktx.com>
This commit is contained in:
parent
46f08d1651
commit
2f626d8733
2 changed files with 22 additions and 5 deletions
|
@ -90,7 +90,7 @@ Below is a list of artwork licenses from plugins
|
||||||
| Autinn/* | GPL-3.0-or-later | No artwork specific license provided |
|
| Autinn/* | GPL-3.0-or-later | No artwork specific license provided |
|
||||||
| BaconPlugs/* | 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/* | 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/1f953.svg | CC-BY-4.0 | |
|
||||||
| BaconPlugs/Keypunch029.json | OFL-1.1 | |
|
| 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) |
|
| Bidoo/* | CC-BY-NC-ND-4.0 | [Special permission granted for runtime dark mode](https://github.com/sebastien-bouffier/Bidoo/issues/191) |
|
||||||
|
|
|
@ -828,11 +828,28 @@ else
|
||||||
PLUGIN_LIST = $(subst /plugin.json,,$(wildcard */plugin.json))
|
PLUGIN_LIST = $(subst /plugin.json,,$(wildcard */plugin.json))
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
UNWANTED_FILES = HetrickCV/res/illustrator - deprecated/MyModule.svg
|
||||||
|
|
||||||
RESOURCE_FILES = \
|
RESOURCE_FILES = \
|
||||||
$(wildcard */presets) \
|
$(filter-out $(UNWANTED_FILES), \
|
||||||
$(wildcard */res/*.svg) \
|
$(wildcard */res/*.svg) \
|
||||||
$(filter-out HetrickCV/res/illustrator - deprecated/MyModule.svg,$(wildcard */res/*/*.svg)) \
|
$(wildcard */res/*/*.svg) \
|
||||||
$(wildcard */res/*.ttf) $(wildcard */res/*/*.ttf)
|
$(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_RESOURCES += $(PLUGIN_LIST:%=../bin/CardinalFX.lv2/resources/PluginManifests/%.json)
|
PLUGIN_RESOURCES += $(PLUGIN_LIST:%=../bin/CardinalFX.lv2/resources/PluginManifests/%.json)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue