mirror of https://github.com/buggins/dlangui.git
Update instructions
This commit is contained in:
parent
c79fca652a
commit
6650581653
|
@ -23,11 +23,13 @@ android_build_config.mk
|
||||||
Update paths to Android NDK, SDK, DlangUI source directory.
|
Update paths to Android NDK, SDK, DlangUI source directory.
|
||||||
|
|
||||||
Default values:
|
Default values:
|
||||||
|
```
|
||||||
export DLANGUI_DIR=$HOME/src/d/dlangui
|
export DLANGUI_DIR=$HOME/src/d/dlangui
|
||||||
export NDK=$HOME/android-ndk-r11c
|
export NDK=$HOME/android-ndk-r11c
|
||||||
export SDK=$HOME/android-sdk-linux
|
export SDK=$HOME/android-sdk-linux
|
||||||
export LDC=$HOME/ldc2-android-arm-0.17.0-alpha2-linux-x86_64
|
export LDC=$HOME/ldc2-android-arm-0.17.0-alpha2-linux-x86_64
|
||||||
export NDK_ARCH=x86_64
|
export NDK_ARCH=x86_64
|
||||||
|
```
|
||||||
|
|
||||||
|
|
||||||
Use LDC cross compiler for armv7a build according instructions
|
Use LDC cross compiler for armv7a build according instructions
|
||||||
|
@ -35,6 +37,33 @@ Use LDC cross compiler for armv7a build according instructions
|
||||||
https://wiki.dlang.org/Build_LDC_for_Android#Build_a_sample_OpenGL_Android_app_ported_to_D
|
https://wiki.dlang.org/Build_LDC_for_Android#Build_a_sample_OpenGL_Android_app_ported_to_D
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
Dependencies
|
||||||
|
============
|
||||||
|
|
||||||
|
FreeType dependency is needed for dlangui, as well as D runtime for android
|
||||||
|
|
||||||
|
1\) Build D runtime with LDC
|
||||||
|
(should this be done inside LDC install folder?)
|
||||||
|
|
||||||
|
For this and the next tasks ninja and cmake build systems is needed,
|
||||||
|
refer to https://wiki.dlang.org/Build_D_for_Android for more info
|
||||||
|
|
||||||
|
|
||||||
|
```
|
||||||
|
set CC %ANDROID_HOME%\ndk-bundle\prebuilt\windows-x86_64\bin\clang.exe
|
||||||
|
ldc-build-runtime --ninja --targetPreset=Android-arm --dFlags="-w;-mcpu=cortex-a8" --buildDir=droid32
|
||||||
|
```
|
||||||
|
|
||||||
|
2\) Download and build FreeType
|
||||||
|
|
||||||
|
on Windows just run ./get_ft.ps1 && ./build_ft.bat
|
||||||
|
|
||||||
|
currently there is no scripts for Linux so you have to adapt those manually
|
||||||
|
|
||||||
|
then copy the binaries to your project android libs/ folder
|
||||||
|
|
||||||
|
|
||||||
Building
|
Building
|
||||||
========
|
========
|
||||||
|
|
||||||
|
|
|
@ -0,0 +1,7 @@
|
||||||
|
cd freetype-2.9.1
|
||||||
|
mkdir build-arm
|
||||||
|
cd build-arm
|
||||||
|
set CC=%NDK%\prebuilt\windows-x86_64\bin\clang
|
||||||
|
set NDK=%ANDROID_HOME%\ndk-bundle
|
||||||
|
cmake .. -G"Ninja" -DCMAKE_TOOLCHAIN_FILE=%NDK%\build\cmake\android.toolchain.cmake -DCMAKE_SYSTEM_NAME="Android" -DANDROID_NDK=%NDK% -DANDROID_TOOLCHAIN=clang -DANDROID_PLATFORM=android-21 -DBUILD_SHARED_LIBS=ON
|
||||||
|
cmake --build . --config Release
|
|
@ -0,0 +1,4 @@
|
||||||
|
wget https://download.savannah.gnu.org/releases/freetype/ft291.zip -OutFile ./ft291.zip
|
||||||
|
Remove-Item -Path "freetype-2.9.1" -Recurse -Force
|
||||||
|
Expand-Archive -Path ft291.zip -DestinationPath .
|
||||||
|
cmd compile_ft.bat
|
Loading…
Reference in New Issue