Browse Source

Disable external plugins if building in DEBUG mode

tags/1.9.8
falkTX 7 years ago
parent
commit
94418a6a14
1 changed files with 3 additions and 1 deletions
  1. +3
    -1
      source/Makefile.mk

+ 3
- 1
source/Makefile.mk View File

@@ -7,8 +7,10 @@
# ---------------------------------------------------------------------------------------------------------------------
# Modify to enable/disable specific features

# Build external plugins
# Build external plugins (if debug is disabled)
ifneq ($(DEBUG),true)
EXTERNAL_PLUGINS = true
endif

# ---------------------------------------------------------------------------------------------------------------------
# DO NOT MODIFY PAST THIS POINT!


Loading…
Cancel
Save