Browse Source

Fix final binaries not updated when carla static lib changes

tags/22.02
falkTX 3 years ago
parent
commit
e739598100
1 changed files with 4 additions and 4 deletions
  1. +4
    -4
      src/Makefile.cardinal.mk

+ 4
- 4
src/Makefile.cardinal.mk View File

@@ -60,13 +60,13 @@ endif
# CARLA_EXTRA_LIBS += -Wl,--no-whole-archive -Wl,--end-group
# endif

STATIC_CARLA_PLUGIN_LIBS += $(CARLA_EXTRA_LIBS)

# FIXME patch fluidsynth package
ifeq ($(WINDOWS),true)
STATIC_CARLA_PLUGIN_LIBS += -ldsound -lwinmm
endif

CARLA_EXTRA_LIBS += $(STATIC_CARLA_PLUGIN_LIBS)

# --------------------------------------------------------------
# Import base definitions

@@ -109,8 +109,8 @@ endif

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

EXTRA_DEPENDENCIES = $(RACK_EXTRA_LIBS)
EXTRA_LIBS = $(CARLA_EXTRA_LIBS) $(RACK_EXTRA_LIBS)
EXTRA_DEPENDENCIES = $(CARLA_EXTRA_LIBS) $(RACK_EXTRA_LIBS)
EXTRA_LIBS = $(STATIC_CARLA_PLUGIN_LIBS) $(RACK_EXTRA_LIBS)

# --------------------------------------------------------------
# Do some magic


Loading…
Cancel
Save