Browse Source

Install resources for the new plugins

tags/1.9.6
falkTX 9 years ago
parent
commit
46255b6f5f
2 changed files with 21 additions and 2 deletions
  1. +19
    -0
      Makefile
  2. +2
    -2
      source/Makefile.mk

+ 19
- 0
Makefile View File

@@ -400,6 +400,11 @@ install:
install -d $(DESTDIR)$(PREFIX)/share/applications/
install -d $(DESTDIR)$(PREFIX)/share/carla/
install -d $(DESTDIR)$(PREFIX)/share/carla/resources/
ifeq ($(EXPERIMENTAL_PLUGINS),true)
install -d $(DESTDIR)$(PREFIX)/share/carla/resources/at1/
install -d $(DESTDIR)$(PREFIX)/share/carla/resources/bls1/
install -d $(DESTDIR)$(PREFIX)/share/carla/resources/rev1/
endif
install -d $(DESTDIR)$(PREFIX)/share/carla/resources/nekofilter/
install -d $(DESTDIR)$(PREFIX)/share/carla/resources/zynaddsubfx/
install -d $(DESTDIR)$(PREFIX)/share/icons/hicolor/16x16/apps/
@@ -506,6 +511,20 @@ install:
bin/resources/*-ui \
$(DESTDIR)$(PREFIX)/share/carla/resources/

ifeq ($(EXPERIMENTAL_PLUGINS),true)
install -m 644 \
bin/resources/at1/*.png \
$(DESTDIR)$(PREFIX)/share/carla/resources/at1/

install -m 644 \
bin/resources/bls1/*.png \
$(DESTDIR)$(PREFIX)/share/carla/resources/bls1/

install -m 644 \
bin/resources/rev1/*.png \
$(DESTDIR)$(PREFIX)/share/carla/resources/rev1/
endif

install -m 644 \
bin/resources/nekofilter/*.png \
$(DESTDIR)$(PREFIX)/share/carla/resources/nekofilter/


+ 2
- 2
source/Makefile.mk View File

@@ -8,10 +8,10 @@
# Modify to enable/disable specific features

# Use the free vestige header instead of the official VST SDK
CARLA_VESTIGE_HEADER = true
CARLA_VESTIGE_HEADER ?= true

# Enable experimental plugins, don't complain if the build fails when using this!
EXPERIMENTAL_PLUGINS = false
EXPERIMENTAL_PLUGINS ?= false

# --------------------------------------------------------------
# DO NOT MODIFY PAST THIS POINT!


Loading…
Cancel
Save