initial version of DUB package

This commit is contained in:
Vadim Lopatin 2014-04-16 22:37:39 +04:00
parent 91c0540fdd
commit 4e1e5f58b1
2 changed files with 25 additions and 0 deletions

View File

@ -8,6 +8,10 @@ GUI for D programming language, written in D.
* Supports highly customizable UI themes and styles
* Hardware acceleration using OpenGL (when built with USE_OPENGL)
* Fallback to Win32 API / XCB when OpenGL is not available
* Actually it's a port (with major refactoring) of GUI library for cross platform OpenGL based implementation of Cool Reader app prokeject from C++.
* Almost ready for 2D games development
* Goal: provide set of widgets suitable for building of IDE.
Win32 builds
------------
@ -38,3 +42,6 @@ Third party components used
* DerelictGL3 - for OpenGL support
* DerelictFT + FreeType library support under linux and optionally under Windows.
* DerelictFI + FreeImage library support for decoding of images
* WindowsAPI bindings from http://www.dsource.org/projects/bindings/wiki/WindowsApi (patched)
* XCB and X11 bindings (patched) TODO: provide links

18
dub.json Normal file
View File

@ -0,0 +1,18 @@
{
"name": "dlangui",
"description": "D language GUI library",
"homepage": "https://github.com/buggins/dlangui",
"license": "Boost",
"authors": [
"Vadim Lopatin"
],
"targetName": "dlangui",
"targetPath": "lib",
"dependencies": {
"derelict-gl3": "~master",
"derelict-fi": "~master",
"derelict-ft": "~master"
}
}