mirror of https://github.com/buggins/dlangui.git
External backends: enum flags config added
This commit is contained in:
parent
2c6da55e63
commit
51c0637ae4
|
@ -17,7 +17,10 @@ version(USE_CONSOLE) {
|
||||||
enum BACKEND_WIN32 = false;
|
enum BACKEND_WIN32 = false;
|
||||||
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
|
||||||
|
mixin(import("external_cfg.d"));
|
||||||
|
}
|
||||||
else
|
else
|
||||||
enum BACKEND_GUI = true;
|
enum BACKEND_GUI = true;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue