diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2019-01-29 08:34:27 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-01-29 08:34:27 +0100 |
commit | faad3a013a4c5f73f59d961d7b707699b107a87e (patch) | |
tree | c6c932db5b05a84be566c9ba28510f271fe7e11f /platform/osx/detect.py | |
parent | f32c8269241ea5f293b3eda2f9dbe01ffb6f7397 (diff) | |
parent | b53f2d1d598193ab1d1c02345fc321be254364ca (diff) |
Merge pull request #25443 from BastiaanOlij/fix_vsync_osx
Using DisplayLink to emulate vsync on OSX
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 31fcbc0427..36a753e683 100644 --- a/platform/osx/detect.py +++ b/platform/osx/detect.py @@ -126,7 +126,7 @@ def configure(env): env.Append(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']) + 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']) env.Append(CPPFLAGS=['-mmacosx-version-min=10.9']) |