mirror of
https://github.com/etlegacy/etlegacy-android.git
synced 2025-04-12 04:00:48 +00:00
Build Config update
Update min sdk version of Android API to 16, some minor Cmake options build tweaking. Fix issue with linking OpenGL ES lib. Fix warning "warning: implicit declaration of function is invalid in c99".
This commit is contained in:
parent
7f3c1c11c1
commit
02104613cf
1 changed files with 3 additions and 2 deletions
|
@ -13,13 +13,14 @@ android {
|
|||
if (buildAsApplication) {
|
||||
applicationId "org.etlegacy.app"
|
||||
}
|
||||
minSdkVersion 14
|
||||
minSdkVersion 16
|
||||
targetSdkVersion 26
|
||||
versionCode 1
|
||||
versionName "1.0"
|
||||
externalNativeBuild {
|
||||
cmake {
|
||||
arguments "-DCROSS_COMPILE32=OFF", "-DFEATURE_RENDERER2=OFF", "-DFEATURE_RENDERER_GLES=ON"
|
||||
arguments "-DCROSS_COMPILE32=OFF", "-DFEATURE_RENDERER2=OFF", "-DFEATURE_RENDERER_GLES=ON", "-DBUILD_SERVER=OFF", "-DINSTALL_EXTRA=OFF", "-DCMAKE_BUILD_TYPE=Release", "-DBUNDLED_LIBS=ON", "-DBUNDLED_SDL=OFF", "-DFEATURE_LUA=OFF", "-DRENDERER_DYNAMIC=OFF", "-DCMAKE_C_FLAGS= -std=gnu99"
|
||||
//"-DANDROID_ARM_NEON=OFF"
|
||||
}
|
||||
}
|
||||
ndk {
|
||||
|
|
Loading…
Reference in a new issue