diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2019-03-02 10:30:10 +0100 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2019-03-02 10:30:25 +0100 |
commit | 1807e0f1355efc92503aeb4c0a2496617d3f0872 (patch) | |
tree | 739c806b0f30f19350531ecf22cabf2c2360e437 /platform/iphone/detect.py | |
parent | e930fb9a6e4277ad3c4dc60a775785b294840512 (diff) |
SCons: Move platform-specific Opus config to its module
Diffstat (limited to 'platform/iphone/detect.py')
-rw-r--r-- | platform/iphone/detect.py | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/platform/iphone/detect.py b/platform/iphone/detect.py index d0e6a4cefe..172572bcb4 100644 --- a/platform/iphone/detect.py +++ b/platform/iphone/detect.py @@ -174,11 +174,3 @@ def configure(env): env.Append(CPPPATH=['#platform/iphone']) env.Append(CPPFLAGS=['-DIPHONE_ENABLED', '-DUNIX_ENABLED', '-DGLES_ENABLED', '-DCOREAUDIO_ENABLED']) - - # TODO: Move that to opus module's config - if 'module_opus_enabled' in env and env['module_opus_enabled']: - env.opus_fixed_point = "yes" - if (env["arch"] == "arm"): - env.Append(CFLAGS=["-DOPUS_ARM_OPT"]) - elif (env["arch"] == "arm64"): - env.Append(CFLAGS=["-DOPUS_ARM64_OPT"]) |