mirror of https://github.com/buggins/dlangui.git
initial version of DUB package
This commit is contained in:
parent
91c0540fdd
commit
4e1e5f58b1
|
@ -8,6 +8,10 @@ GUI for D programming language, written in D.
|
||||||
* Supports highly customizable UI themes and styles
|
* Supports highly customizable UI themes and styles
|
||||||
* Hardware acceleration using OpenGL (when built with USE_OPENGL)
|
* Hardware acceleration using OpenGL (when built with USE_OPENGL)
|
||||||
* Fallback to Win32 API / XCB when OpenGL is not available
|
* 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
|
Win32 builds
|
||||||
------------
|
------------
|
||||||
|
@ -38,3 +42,6 @@ Third party components used
|
||||||
* DerelictGL3 - for OpenGL support
|
* DerelictGL3 - for OpenGL support
|
||||||
* DerelictFT + FreeType library support under linux and optionally under Windows.
|
* DerelictFT + FreeType library support under linux and optionally under Windows.
|
||||||
* DerelictFI + FreeImage library support for decoding of images
|
* 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
|
||||||
|
|
||||||
|
|
|
@ -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"
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue