diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2019-04-30 18:23:38 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-04-30 18:23:38 +0200 |
commit | a7f00f3bacbb41f35b7120db6a911eda7c6feac9 (patch) | |
tree | 2d786b3d7fddbbb869ffdc33fa29279e179ae07f /platform/iphone/detect.py | |
parent | a5c619dc8dc8a488599c3b08314ddb69e0ed445e (diff) | |
parent | d52b70fb5e8e842ddcc9a57bad8e34366c0ee6d8 (diff) |
Merge pull request #28530 from akien-mga/scons-prepend-cpppath
SCons: Always use env.Prepend for CPPPATH
Diffstat (limited to 'platform/iphone/detect.py')
-rw-r--r-- | platform/iphone/detect.py | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/platform/iphone/detect.py b/platform/iphone/detect.py index d56e28a4af..3ed0a4ade7 100644 --- a/platform/iphone/detect.py +++ b/platform/iphone/detect.py @@ -165,12 +165,12 @@ def configure(env): if env['icloud']: env.Append(CPPFLAGS=['-DICLOUD_ENABLED']) - env.Append(CPPPATH=['$IPHONESDK/usr/include', - '$IPHONESDK/System/Library/Frameworks/OpenGLES.framework/Headers', - '$IPHONESDK/System/Library/Frameworks/AudioUnit.framework/Headers', - ]) + env.Prepend(CPPPATH=['$IPHONESDK/usr/include', + '$IPHONESDK/System/Library/Frameworks/OpenGLES.framework/Headers', + '$IPHONESDK/System/Library/Frameworks/AudioUnit.framework/Headers', + ]) env['ENV']['CODESIGN_ALLOCATE'] = '/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/codesign_allocate' - env.Append(CPPPATH=['#platform/iphone']) + env.Prepend(CPPPATH=['#platform/iphone']) env.Append(CPPFLAGS=['-DIPHONE_ENABLED', '-DUNIX_ENABLED', '-DGLES_ENABLED', '-DCOREAUDIO_ENABLED']) |