diff options
author | Bastiaan Olij <mux213@gmail.com> | 2019-01-27 22:39:32 +1100 |
---|---|---|
committer | Bastiaan Olij <mux213@gmail.com> | 2019-01-29 17:00:35 +1100 |
commit | b53f2d1d598193ab1d1c02345fc321be254364ca (patch) | |
tree | c6c932db5b05a84be566c9ba28510f271fe7e11f /platform/osx/detect.py | |
parent | f32c8269241ea5f293b3eda2f9dbe01ffb6f7397 (diff) | |
download | redot-engine-b53f2d1d598193ab1d1c02345fc321be254364ca.tar.gz |
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']) |