Use master version of dlib to enable jpeg support; enable OPENGL for windows builds

This commit is contained in:
Vadim Lopatin 2014-12-30 15:50:05 +03:00
parent 1f232f477d
commit f0883c5816
5 changed files with 6 additions and 2 deletions

View File

@ -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"]
},

View File

@ -16,6 +16,7 @@
"copyFiles": ["res"],
"versions-posix": ["USE_SDL", "USE_OPENGL"],
"versions-windows": ["USE_OPENGL"],
"mainSourceFile": "src/main.d",

View File

@ -10,6 +10,7 @@
"targetType": "executable",
"versions-posix": ["USE_SDL", "USE_OPENGL"],
"versions-windows": ["USE_OPENGL"],
"sourceFiles": [
"src/app.d"

View File

@ -16,6 +16,7 @@
"copyFiles": ["res"],
"versions-posix": ["USE_SDL", "USE_OPENGL"],
"versions-windows": ["USE_OPENGL"],
"mainSourceFile": "src/main.d",

View File

@ -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;