aboutsummaryrefslogtreecommitdiff
path: root/platform/android/detect.py
diff options
context:
space:
mode:
authorJuan Linietsky2017-03-20 23:31:41 -0300
committerJuan Linietsky2017-03-21 08:42:06 -0300
commitb5a06cecffeda556438b33807d766f4823623fee (patch)
treef5171b0e772f8cc31ee0be546975ca3e8fd86765 /platform/android/detect.py
parent33a2c5def0f55ef67196e35ac3309d3f9b70d967 (diff)
downloadgodot-b5a06cecffeda556438b33807d766f4823623fee.tar.gz
godot-b5a06cecffeda556438b33807d766f4823623fee.tar.zst
godot-b5a06cecffeda556438b33807d766f4823623fee.zip
Diffstat (limited to 'platform/android/detect.py')
-rw-r--r--platform/android/detect.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/platform/android/detect.py b/platform/android/detect.py
index d1073e0c7..d1b33fe64 100644
--- a/platform/android/detect.py
+++ b/platform/android/detect.py
@@ -26,7 +26,7 @@ def get_opts():
return [
('ANDROID_NDK_ROOT', 'the path to Android NDK',
os.environ.get("ANDROID_NDK_ROOT", 0)),
- ('ndk_platform', 'compile for platform: (android-<api> , example: android-14)', "android-14"),
+ ('ndk_platform', 'compile for platform: (android-<api> , example: android-18)', "android-18"),
('android_arch', 'select compiler architecture: (armv7/armv6/x86)', "armv7"),
('android_neon', 'enable neon (armv7 only)', "yes"),
('android_stl', 'enable STL support in android port (for modules)', "no")
@@ -198,7 +198,7 @@ def configure(env):
env.Append(LIBS=['OpenSLES'])
env.Append(LIBS=['EGL', 'OpenSLES', 'android'])
- env.Append(LIBS=['log', 'GLESv1_CM', 'GLESv2', 'z'])
+ env.Append(LIBS=['log', 'GLESv1_CM', 'GLESv2', 'GLESv3','z'])
if (sys.platform.startswith("darwin")):
env['SHLIBSUFFIX'] = '.so'