From 773211e349ac499c434ca8ef7823f2e34ef8d0d6 Mon Sep 17 00:00:00 2001 From: Denis Feklushkin Date: Wed, 18 Oct 2017 06:47:22 +0700 Subject: [PATCH] enum flag added, excludedSourceFiles changed --- dub.json | 2 +- src/dlangui/core/config.d | 7 ++++++- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/dub.json b/dub.json index 118b3795..495476dc 100644 --- a/dub.json +++ b/dub.json @@ -69,7 +69,7 @@ { "name": "external", "versions": ["USE_EXTERNAL"], - "excludedSourceFiles": ["3rdparty/*"] + "excludedSourceFiles": ["3rdparty/fontconfig/*"] }, { "name": "minimal", diff --git a/src/dlangui/core/config.d b/src/dlangui/core/config.d index a9606b93..f172ef21 100644 --- a/src/dlangui/core/config.d +++ b/src/dlangui/core/config.d @@ -10,6 +10,8 @@ version(USE_CONSOLE) { enum ENABLE_OPENGL = false; enum ENABLE_FREETYPE = false; enum BACKEND_CONSOLE = true; + /// Tweaking widgets to console style drawing + enum WIDGET_STYLE_CONSOLE = true; enum BACKEND_GUI = false; enum BACKEND_SDL = false; enum BACKEND_X11 = false; @@ -18,11 +20,14 @@ version(USE_CONSOLE) { enum BACKEND_ANDROID = false; } else { version(USE_EXTERNAL) { - // Use this file for to define any enums that is need for the external backend + // Use this file to define any enums that is need for the external backend mixin(import("external_cfg.d")); } else + { enum BACKEND_GUI = true; + enum WIDGET_STYLE_CONSOLE = false; + } version (NO_FREETYPE) { enum ENABLE_FREETYPE = false;