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/osx/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/osx/detect.py')
-rw-r--r-- | platform/osx/detect.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/platform/osx/detect.py b/platform/osx/detect.py index 8024897195..4c88f91d13 100644 --- a/platform/osx/detect.py +++ b/platform/osx/detect.py @@ -126,7 +126,7 @@ def configure(env): ## Flags - env.Append(CPPPATH=['#platform/osx']) + env.Prepend(CPPPATH=['#platform/osx']) env.Append(CPPFLAGS=['-DOSX_ENABLED', '-DUNIX_ENABLED', '-DGLES_ENABLED', '-DAPPLE_STYLE_KEYS', '-DCOREAUDIO_ENABLED', '-DCOREMIDI_ENABLED']) env.Append(LINKFLAGS=['-framework', 'Cocoa', '-framework', 'Carbon', '-framework', 'OpenGL', '-framework', 'AGL', '-framework', 'AudioUnit', '-framework', 'CoreAudio', '-framework', 'CoreMIDI', '-lz', '-framework', 'IOKit', '-framework', 'ForceFeedback', '-framework', 'CoreVideo']) env.Append(LIBS=['pthread']) |