mirror of https://github.com/buggins/dlangui.git
enum flag added, excludedSourceFiles changed
This commit is contained in:
parent
4955435346
commit
773211e349
2
dub.json
2
dub.json
|
@ -69,7 +69,7 @@
|
||||||
{
|
{
|
||||||
"name": "external",
|
"name": "external",
|
||||||
"versions": ["USE_EXTERNAL"],
|
"versions": ["USE_EXTERNAL"],
|
||||||
"excludedSourceFiles": ["3rdparty/*"]
|
"excludedSourceFiles": ["3rdparty/fontconfig/*"]
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "minimal",
|
"name": "minimal",
|
||||||
|
|
|
@ -10,6 +10,8 @@ version(USE_CONSOLE) {
|
||||||
enum ENABLE_OPENGL = false;
|
enum ENABLE_OPENGL = false;
|
||||||
enum ENABLE_FREETYPE = false;
|
enum ENABLE_FREETYPE = false;
|
||||||
enum BACKEND_CONSOLE = true;
|
enum BACKEND_CONSOLE = true;
|
||||||
|
/// Tweaking widgets to console style drawing
|
||||||
|
enum WIDGET_STYLE_CONSOLE = true;
|
||||||
enum BACKEND_GUI = false;
|
enum BACKEND_GUI = false;
|
||||||
enum BACKEND_SDL = false;
|
enum BACKEND_SDL = false;
|
||||||
enum BACKEND_X11 = false;
|
enum BACKEND_X11 = false;
|
||||||
|
@ -18,11 +20,14 @@ version(USE_CONSOLE) {
|
||||||
enum BACKEND_ANDROID = false;
|
enum BACKEND_ANDROID = false;
|
||||||
} else {
|
} else {
|
||||||
version(USE_EXTERNAL) {
|
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"));
|
mixin(import("external_cfg.d"));
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
|
{
|
||||||
enum BACKEND_GUI = true;
|
enum BACKEND_GUI = true;
|
||||||
|
enum WIDGET_STYLE_CONSOLE = false;
|
||||||
|
}
|
||||||
|
|
||||||
version (NO_FREETYPE) {
|
version (NO_FREETYPE) {
|
||||||
enum ENABLE_FREETYPE = false;
|
enum ENABLE_FREETYPE = false;
|
||||||
|
|
Loading…
Reference in New Issue