diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2019-01-16 13:02:33 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-01-16 13:02:33 +0100 |
commit | 5eb7e32fdde68722d98e85c950c3c0d2933c00c5 (patch) | |
tree | 5c2d608b3514f08da6a8e6b0bfcaca115f3b151a /platform/android/detect.py | |
parent | 72bfd10fa4c3b07a7dd0ef80373be83b60129018 (diff) | |
parent | eebca76be5c75a98ad150772cdcb7f11c10ce8ec (diff) | |
download | redot-engine-5eb7e32fdde68722d98e85c950c3c0d2933c00c5.tar.gz |
Merge pull request #25035 from akien-mga/scons-mpc-unused
SCons: Drop unused MPC_FIXED_POINT define
Diffstat (limited to 'platform/android/detect.py')
-rw-r--r-- | platform/android/detect.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/platform/android/detect.py b/platform/android/detect.py index b1fbf4058a..aa48252435 100644 --- a/platform/android/detect.py +++ b/platform/android/detect.py @@ -295,7 +295,7 @@ def configure(env): '/toolchains/' + target_subpath + '/prebuilt/' + host_subpath + '/' + abi_subpath + '/lib']) env.Append(CPPPATH=['#platform/android']) - env.Append(CPPFLAGS=['-DANDROID_ENABLED', '-DUNIX_ENABLED', '-DNO_FCNTL', '-DMPC_FIXED_POINT']) + env.Append(CPPFLAGS=['-DANDROID_ENABLED', '-DUNIX_ENABLED', '-DNO_FCNTL']) env.Append(LIBS=['OpenSLES', 'EGL', 'GLESv3', 'android', 'log', 'z', 'dl']) # TODO: Move that to opus module's config |