mirror of https://github.com/buggins/dlangui.git
Fix minimal configuration for Linux
This commit is contained in:
parent
fd39c58658
commit
a5def713ec
5
dub.json
5
dub.json
|
@ -87,13 +87,14 @@
|
||||||
{
|
{
|
||||||
"name": "minimal",
|
"name": "minimal",
|
||||||
"versions": ["EmbedStandardResources", "ForceLogs"],
|
"versions": ["EmbedStandardResources", "ForceLogs"],
|
||||||
"versions-posix": ["USE_SDL", "USE_FREETYPE", "NO_OPENGL"],
|
"versions-posix": ["USE_SDL", "USE_FREETYPE", "NO_OPENGL", "SDL_204"],
|
||||||
"versions-windows": ["Unicode" ,"NO_OPENGL"],
|
"versions-windows": ["Unicode" ,"NO_OPENGL"],
|
||||||
"libs-windows": ["opengl32"],
|
"libs-windows": ["opengl32"],
|
||||||
"dependencies-posix": {
|
"dependencies-posix": {
|
||||||
"bindbc-opengl": "~>1.0.0",
|
"bindbc-opengl": "~>1.0.0",
|
||||||
"bindbc-freetype": "~>1.0.0",
|
"bindbc-freetype": "~>1.0.0",
|
||||||
"bindbc-sdl": "~>1.0.0"
|
"bindbc-sdl": "~>1.0.0",
|
||||||
|
"icontheme": "~>1.2.3"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
|
|
@ -40,12 +40,12 @@ import dlangui.widgets.widget;
|
||||||
import dlangui.platforms.common.platform;
|
import dlangui.platforms.common.platform;
|
||||||
|
|
||||||
import bindbc.sdl;
|
import bindbc.sdl;
|
||||||
|
import loader = bindbc.loader.sharedlib;
|
||||||
|
|
||||||
static if (ENABLE_OPENGL) {
|
static if (ENABLE_OPENGL) {
|
||||||
import bindbc.opengl;
|
import bindbc.opengl;
|
||||||
import dlangui.graphics.gldrawbuf;
|
import dlangui.graphics.gldrawbuf;
|
||||||
import dlangui.graphics.glsupport;
|
import dlangui.graphics.glsupport;
|
||||||
import loader = bindbc.loader.sharedlib;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
private void sdlCheckMissingSymFunc(const(loader.ErrorInfo)[] errors) {
|
private void sdlCheckMissingSymFunc(const(loader.ErrorInfo)[] errors) {
|
||||||
|
|
Loading…
Reference in New Issue