dlangui/dub.json

63 lines
1.6 KiB
JSON

{
"name": "dlangui",
"description": "Cross platform GUI for D. Layouts, styles, themes, unicode, i18n, OpenGL, widget set.",
"homepage": "https://github.com/buggins/dlangui",
"license": "Boost",
"authors": ["Vadim Lopatin"],
"targetType": "none",
"buildRequirements":[
"allowWarnings"
],
"subPackages": [
{
"name": "dlanguilib",
"description": "D language cross platform GUI library, inspired by Android UI API. Supports OpenGL based hardware acceleration, i18n, styles and themes.",
"homepage": "https://github.com/buggins/dlangui",
"license": "Boost",
"authors": ["Vadim Lopatin"],
"targetName": "dlanguilib",
"targetPath": "lib",
"targetType": "staticLibrary",
"versions-posix": ["USE_SDL", "USE_OPENGL"],
"versions-windows": ["Unicode"],
"copyFiles": ["res"],
"sourceFiles": [
"project.ddoc"
],
"excludedSourceFiles": [
"../../src/api.d",
"../../src/index.d",
"../../src/screenshots.d"
],
"sourcePaths-windows": [
"3rdparty"
],
"dependencies": {
"derelict-gl3": ">=1.0.12",
"dlib": ">=0.4.1"
},
"dependencies-posix": {
"derelict-ft": ">=1.0.0",
"derelict-sdl2": ">=1.9.1"
},
"-ddoxFilterArgs": ["--unittest-examples", "--min-protection=Protected", "--ex", "win32.", "--ex", "src.dlangui"]
},
"./examples/helloworld/",
"./examples/example1/",
"./examples/tetris/"
],
"dependencies": {
"dlangui:dlanguilib": "*",
"dlangui:example1": "*",
"dlangui:helloworld": "*",
"dlangui:tetris": "*"
}
}