diff options
Diffstat (limited to 'SConstruct')
| -rw-r--r-- | SConstruct | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/SConstruct b/SConstruct index 80d39403ba..691536c956 100644 --- a/SConstruct +++ b/SConstruct @@ -77,7 +77,7 @@ env_base.android_manifest_chunk="" env_base.android_permission_chunk="" env_base.android_appattributes_chunk="" env_base.disabled_modules=[] - +env_base.use_ptrcall=False env_base.split_drivers=False @@ -313,6 +313,9 @@ if selected_platform in platform_list: sys.modules.pop('config') + if (env.use_ptrcall): + env.Append(CPPFLAGS=['-DPTRCALL_ENABLED']); + if (env['musepack']=='yes'): env.Append(CPPFLAGS=['-DMUSEPACK_ENABLED']); |