Browse Source

Only build embed plugin example if DGL libs are available

Signed-off-by: falkTX <falktx@falktx.com>
pull/321/head
falkTX 1 year ago
parent
commit
e363552454
1 changed files with 3 additions and 1 deletions
  1. +3
    -1
      Makefile

+ 3
- 1
Makefile View File

@@ -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


Loading…
Cancel
Save