mirror of https://github.com/buggins/dlangui.git
Use master version of dlib to enable jpeg support; enable OPENGL for windows builds
This commit is contained in:
parent
1f232f477d
commit
f0883c5816
3
dub.json
3
dub.json
|
@ -21,6 +21,7 @@
|
|||
"targetType": "staticLibrary",
|
||||
|
||||
"versions-posix": ["USE_SDL", "USE_OPENGL"],
|
||||
"versions-windows": ["USE_OPENGL"],
|
||||
|
||||
"copyFiles": ["res"],
|
||||
|
||||
|
@ -94,7 +95,7 @@
|
|||
"derelict-sdl2": "~master",
|
||||
"derelict-gl3": "~master",
|
||||
"derelict-ft": "~master",
|
||||
"dlib": ">=0.4.0"
|
||||
"dlib": "~master"
|
||||
},
|
||||
"-ddoxFilterArgs": ["--unittest-examples", "--min-protection=Protected", "--ex", "win32.", "--ex", "src.dlangui"]
|
||||
},
|
||||
|
|
|
@ -16,6 +16,7 @@
|
|||
"copyFiles": ["res"],
|
||||
|
||||
"versions-posix": ["USE_SDL", "USE_OPENGL"],
|
||||
"versions-windows": ["USE_OPENGL"],
|
||||
|
||||
"mainSourceFile": "src/main.d",
|
||||
|
||||
|
|
|
@ -10,6 +10,7 @@
|
|||
"targetType": "executable",
|
||||
|
||||
"versions-posix": ["USE_SDL", "USE_OPENGL"],
|
||||
"versions-windows": ["USE_OPENGL"],
|
||||
|
||||
"sourceFiles": [
|
||||
"src/app.d"
|
||||
|
|
|
@ -16,6 +16,7 @@
|
|||
"copyFiles": ["res"],
|
||||
|
||||
"versions-posix": ["USE_SDL", "USE_OPENGL"],
|
||||
"versions-windows": ["USE_OPENGL"],
|
||||
|
||||
"mainSourceFile": "src/main.d",
|
||||
|
||||
|
|
|
@ -34,7 +34,7 @@ version (USE_DEIMAGE) {
|
|||
version (USE_DLIBIMAGE) {
|
||||
import dlib.image.io.io;
|
||||
import dlib.image.image;
|
||||
//version = ENABLE_DLIBIMAGE_JPEG;
|
||||
version = ENABLE_DLIBIMAGE_JPEG;
|
||||
}
|
||||
|
||||
import dlangui.core.logger;
|
||||
|
|
Loading…
Reference in New Issue