DPF

DISTRHO Plugin Framework
Log | Files | Refs | Submodules | README | LICENSE

commit e36355245414223d499421a87d88d8aef0b1078b
parent c7baf5cefe85be9a69f1e321c17fda9c6357f0f0
Author: falkTX <falktx@falktx.com>
Date:   Tue, 21 Jun 2022 18:05:16 +0100

Only build embed plugin example if DGL libs are available

Signed-off-by: falkTX <falktx@falktx.com>

Diffstat:
MMakefile | 4+++-
1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/Makefile b/Makefile @@ -21,7 +21,6 @@ dgl: examples: dgl $(MAKE) all -C examples/CVPort - $(MAKE) all -C examples/EmbedExternalUI $(MAKE) all -C examples/FileHandling $(MAKE) all -C examples/Info $(MAKE) all -C examples/Latency @@ -34,6 +33,9 @@ examples: dgl ifeq ($(HAVE_CAIRO),true) $(MAKE) all -C examples/CairoUI endif +ifeq ($(HAVE_DGL),true) + $(MAKE) all -C examples/EmbedExternalUI +endif ifeq ($(CAN_GENERATE_TTL),true) gen: examples utils/lv2_ttl_generator