Skip to content

Commit

Permalink
Merge branch 'github-issue-69' into devel
Browse files Browse the repository at this point in the history
* Removed strict requirement to build UI for LADSPA version of plugins.
  • Loading branch information
sadko4u committed Jan 16, 2020
2 parents 8ed8855 + a0417d7 commit f52608e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
1 change: 1 addition & 0 deletions TODO.txt
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
* Implemented Multiband expander plugin series.
* Fixed bug in trigger that caused notes to be immediately cancelled.
* Implemented support of LV2 state:mapPath extension.
* Removed strict requirement to build UI for LADSPA version of plugins.
- Add support of LV2UI:scaleFactor extension - https://github.com/drobilla/lv2/pull/38/commits
- Implemented Multiband gate plugin series.
- Fixe problem with matched Z transform caused by filter characteristics optimizations.
Expand Down
8 changes: 4 additions & 4 deletions src/Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
SUBDIRS = core metadata utils rendering
SUBDIRS = core metadata utils
MODULES = $(SUBDIRS)
CONTAINER_DEPS = $(OBJ_METADATA) $(OBJ_CORE) $(UTL_FILES)
UTL_DEPS = $(OBJ_CORE) $(OBJ_DSP) $(OBJ_METADATA)
Expand Down Expand Up @@ -40,12 +40,12 @@ endif

ifeq ($(NEED_PLUGINS), 1)
SUBDIRS += dsp plugins container
CONTAINER_DEPS += $(OBJ_DSP) $(OBJ_PLUGINS) rendering
CONTAINER_DEPS += $(OBJ_DSP) $(OBJ_PLUGINS)
endif
ifeq ($(NEED_UI),1)
SUBDIRS += ui
SUBDIRS += ui rendering
MODULES += ui
CONTAINER_DEPS += $(OBJ_UI_CORE) $(OBJ_RES_CORE)
CONTAINER_DEPS += $(OBJ_UI_CORE) $(OBJ_RES_CORE) rendering
endif

.PHONY: all $(MODULES)
Expand Down

0 comments on commit f52608e

Please sign in to comment.