Browse Source

Do not build external plugins by default

tags/v2.3.0-RC1
falkTX 4 years ago
parent
commit
23c5726152
Signed by: falkTX <falktx@falktx.com> GPG Key ID: CDBAA37ABC74FBA0
1 changed files with 1 additions and 2 deletions
  1. +1
    -2
      source/Makefile.mk

+ 1
- 2
source/Makefile.mk View File

@@ -781,11 +781,10 @@ endif
# --------------------------------------------------------------------------------------------------------------------- # ---------------------------------------------------------------------------------------------------------------------
# Check if we should build the external plugins # Check if we should build the external plugins


ifeq ($(EXTERNAL_PLUGINS),true)
ifneq ($(DEBUG),true) ifneq ($(DEBUG),true)
ifneq ($(TESTBUILD),true) ifneq ($(TESTBUILD),true)
ifneq (,$(wildcard $(CWD)/native-plugins/external/Makefile.mk)) ifneq (,$(wildcard $(CWD)/native-plugins/external/Makefile.mk))
EXTERNAL_PLUGINS = true
ifeq ($(EXTERNAL_PLUGINS),true)
BASE_FLAGS += -DHAVE_EXTERNAL_PLUGINS BASE_FLAGS += -DHAVE_EXTERNAL_PLUGINS
include $(CWD)/native-plugins/external/Makefile.mk include $(CWD)/native-plugins/external/Makefile.mk
endif endif


Loading…
Cancel
Save