Browse Source

Link zynaddsubfx-ui in resources too

tags/v2.1-rc1
falkTX 5 years ago
parent
commit
8bdf27448f
1 changed files with 12 additions and 1 deletions
  1. +12
    -1
      source/frontend/Makefile

+ 12
- 1
source/frontend/Makefile View File

@@ -41,7 +41,6 @@ RES = \
$(BINDIR)/resources/modgui \
$(BINDIR)/resources/patchcanvas \
$(BINDIR)/resources/widgets \
$(BINDIR)/resources/zynaddsubfx \
$(BINDIR)/resources/bigmeter-ui \
$(BINDIR)/resources/carla-plugin \
$(BINDIR)/resources/carla-plugin-patchbay \
@@ -81,6 +80,14 @@ RES = \
$(BINDIR)/resources/ui_midipattern.py
endif

ifneq ($(SKIP_ZYN_SYNTH),true)
ifeq ($(HAVE_ZYN_UI_DEPS),true)
RES += \
$(BINDIR)/resources/zynaddsubfx \
$(BINDIR)/resources/zynaddsubfx-ui
endif
endif

# ---------------------------------------------------------------------------------------------------------------------
# UI code

@@ -271,6 +278,10 @@ $(BINDIR)/resources/zynaddsubfx: ../native-plugins/resources/zynaddsubfx
-@mkdir -p $(BINDIR)/resources
$(LINK) $(CURDIR)/$< $(BINDIR)/resources/

$(BINDIR)/resources/zynaddsubfx-ui: ../native-plugins/resources/zynaddsubfx-ui
-@mkdir -p $(BINDIR)/resources
$(LINK) $(CURDIR)/$< $(BINDIR)/resources/

# ---------------------------------------------------------------------------------------------------------------------

$(OBJDIR)/%.cpp.o: %.cpp $(UIs)


Loading…
Cancel
Save