From 94418a6a14db94d54d681f184d9b094a6420a263 Mon Sep 17 00:00:00 2001 From: falkTX Date: Wed, 29 Nov 2017 15:50:11 +0100 Subject: [PATCH] Disable external plugins if building in DEBUG mode --- source/Makefile.mk | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/source/Makefile.mk b/source/Makefile.mk index 7aeec4256..0cb1e31bf 100644 --- a/source/Makefile.mk +++ b/source/Makefile.mk @@ -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!