mirror of https://github.com/buggins/dlangui.git
update README with information about linux Mono-D development
This commit is contained in:
parent
bcb89f0f91
commit
1ebf58e8a4
84
README.md
84
README.md
|
@ -202,10 +202,14 @@ Open solution file with Mono-D
|
||||||
|
|
||||||
dlangui-monod-osx.sln
|
dlangui-monod-osx.sln
|
||||||
|
|
||||||
|
|
||||||
Linux development using Mono-D
|
Linux development using Mono-D
|
||||||
------------------------------
|
------------------------------
|
||||||
|
|
||||||
Install DUB, DMD, MonoDevelop with Mono-D plugin
|
Install DUB, DMD, MonoDevelop with Mono-D plugin.
|
||||||
|
|
||||||
|
Required libraries: libsdl2, x11, libfreetype, opengl, libfontconfig.
|
||||||
|
|
||||||
|
|
||||||
Clone DlangUI repository
|
Clone DlangUI repository
|
||||||
|
|
||||||
|
@ -215,7 +219,7 @@ Enter dlangui directory
|
||||||
|
|
||||||
cd dlangui
|
cd dlangui
|
||||||
|
|
||||||
Clone dependency libraries
|
Clone dependency libraries to dlangui/deps directory
|
||||||
|
|
||||||
mkdir deps
|
mkdir deps
|
||||||
cd deps
|
cd deps
|
||||||
|
@ -224,62 +228,74 @@ Clone dependency libraries
|
||||||
git clone https://github.com/DerelictOrg/DerelictFT.git
|
git clone https://github.com/DerelictOrg/DerelictFT.git
|
||||||
git clone https://github.com/DerelictOrg/DerelictSDL2.git
|
git clone https://github.com/DerelictOrg/DerelictSDL2.git
|
||||||
git clone https://github.com/gecko0307/dlib.git
|
git clone https://github.com/gecko0307/dlib.git
|
||||||
git clone https://github.com/Devisualization/image.git de_image
|
|
||||||
git clone https://github.com/Dav1dde/gl3n.git
|
git clone https://github.com/Dav1dde/gl3n.git
|
||||||
|
|
||||||
Open solution file with Mono-D
|
Open solution file with Mono-D
|
||||||
|
|
||||||
dlangui-monod-linux.sln
|
dlangui-monod-linux.sln
|
||||||
|
|
||||||
|
Try running examples: helloworld, example1, tetris, dmledit
|
||||||
|
|
||||||
|
Configurations Debug, Release, Unittest build SDL2+OpenGL versions of apps.
|
||||||
|
|
||||||
|
Configurations DebugMinimal, ReleaseMinimal, UnittestMinimal build pure SDL2 versions of apps.
|
||||||
|
|
||||||
|
|
||||||
Linux builds
|
If you are creating your own solution / project which uses DlangUI in Mono-D:
|
||||||
------------
|
|
||||||
|
|
||||||
* Uses SDL2 or XCB as a backend (SDL2 is recommended, since has better support now).
|
* Create new solution (assuming that solution directory is located in the same directory as dlangui and "Create directory for solution" option is unchecked; if no - you will need to correct pathes)
|
||||||
* Uses shared memory images for faster drawing.
|
* Add / create source files of your project (e.g. copy+paste helloworld.d)
|
||||||
|
* Add dlangui library project dlangui/dlangui-monod-linux.dproj to solution
|
||||||
|
|
||||||
|
Following settings are to be applied to all configurations of your new project (Debug, Release, Unittest):
|
||||||
|
|
||||||
|
* In your project options Build/Project Dependencies - mark dlangui-monod-linux item
|
||||||
|
* In your project options Build/Compiling/Linking - check "Link in static/shared libraries from nested dependencies"
|
||||||
|
* In your project options Build/Compiling/Compiling - specify Version constants as "USE_OPENGL;USE_SDL;USE_FREETYPE;EmbedStandardResources" (EmbedStandardResources is required if you want to embed your own additional resources into executable)
|
||||||
|
* If your project needs to embed some resources into executable (usually from "views" directory), specify all directories which contain resources in Build/Compiling/Compiling/Extra Compiler Options, e.g.:
|
||||||
|
|
||||||
|
-Jviews
|
||||||
|
-Jviews/res
|
||||||
|
-Jviews/res/i18n
|
||||||
|
-Jviews/res/mdpi
|
||||||
|
-Jviews/res/hdpi
|
||||||
|
|
||||||
|
* In your project options Build/Includes put list of import directories of DlangUI library and its dependencies, like
|
||||||
|
|
||||||
|
../dlangui/src
|
||||||
|
../dlangui/deps/dlib
|
||||||
|
../dlangui/deps/gl3n
|
||||||
|
../dlangui/deps/DerelictSDL2/source
|
||||||
|
../dlangui/deps/DerelictFT/source
|
||||||
|
../dlangui/deps/DerelictGL3/source
|
||||||
|
../dlangui/deps/DerelictUtil/source
|
||||||
|
|
||||||
|
Now you can build and run your project.
|
||||||
|
|
||||||
|
|
||||||
|
Linux builds (DUB)
|
||||||
|
------------------
|
||||||
|
|
||||||
|
* Uses SDL2 as a backend.
|
||||||
* Uses FreeType for font rendering.
|
* Uses FreeType for font rendering.
|
||||||
* TODO: Use FontConfig to get font list.
|
* Uses FontConfig to get list of available fonts.
|
||||||
* OpenGL is now working under SDL2 only.
|
* OpenGL is can be optionally used for better drawing performance.
|
||||||
* Entering of unicode characters is now working under SDL2 only.
|
|
||||||
|
|
||||||
|
libsdl2, libfreetype, libfontconfig
|
||||||
For linux build with SDL2 backend, following libraries are required:
|
|
||||||
|
|
||||||
libsdl2
|
|
||||||
|
|
||||||
To build dlangui apps with XCB backend, development packages for following libraries required for XCB backend build:
|
|
||||||
|
|
||||||
xcb, xcb-util, xcb-shm, xcb-image, xcb-keysyms, X11-xcb, X11
|
|
||||||
|
|
||||||
E.g. in Ubuntu, you can use following command to enable SDL2 backend builds:
|
E.g. in Ubuntu, you can use following command to enable SDL2 backend builds:
|
||||||
|
|
||||||
sudo apt-get install libsdl2-dev
|
sudo apt-get install libsdl2-dev
|
||||||
|
|
||||||
or (for XCB backend)
|
|
||||||
|
|
||||||
sudo apt-get install libxcb-image0-dev libxcb-shm0-dev libxcb-keysyms1-dev
|
|
||||||
|
|
||||||
|
|
||||||
In runtime, .so for following libraries are being loaded (binary packages required):
|
In runtime, .so for following libraries are being loaded (binary packages required):
|
||||||
|
|
||||||
freetype, opengl
|
freetype, opengl, fontconfig
|
||||||
|
|
||||||
|
|
||||||
Build and run on Linux using DUB:
|
Build and run on Linux using DUB:
|
||||||
|
|
||||||
dub run dlangui:example1
|
dub run dlangui:example1
|
||||||
|
|
||||||
Development using Mono-D:
|
|
||||||
|
|
||||||
* open solution dlangui/dlanguimonod.sln
|
|
||||||
* build and run project example1
|
|
||||||
|
|
||||||
You need fresh version of MonoDevelop to use Mono-D. It can be installed from PPA repository.
|
|
||||||
|
|
||||||
sudo add-apt-repository ppa:ermshiperete/monodevelop
|
|
||||||
sudo apt-get update
|
|
||||||
sudo apt-get install monodevelop-current
|
|
||||||
|
|
||||||
|
|
||||||
Other platforms
|
Other platforms
|
||||||
|
|
Loading…
Reference in New Issue