summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorKonstantin Käfer <mail@kkaefer.com>2014-10-21 17:02:22 +0200
committerKonstantin Käfer <mail@kkaefer.com>2014-10-22 10:45:50 +0200
commitb9d422ebc3d48ff91e8f2eda071a0596ada36233 (patch)
tree9061bd114f2db74394792eeb4d043083974cbe04 /test
parent3a39d69504c3a8d87015908424e4ee199ef0c215 (diff)
downloadqtlocation-mapboxgl-b9d422ebc3d48ff91e8f2eda071a0596ada36233.tar.gz
use glfw3 libs instead of manually linking OpenGL frameworks on OS X
[skip ci]
Diffstat (limited to 'test')
-rw-r--r--test/test.gyp4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/test.gyp b/test/test.gyp
index fd7725bb03..bd13ad7fd2 100644
--- a/test/test.gyp
+++ b/test/test.gyp
@@ -12,12 +12,12 @@
['OS == "mac"', {
'link_settings': {
'libraries': [
- '-framework OpenGL',
+ '<@(glfw3_libraries)', # This is a hack since we're not actually using GLFW
],
},
'xcode_settings': {
'OTHER_LDFLAGS': [
- '-framework OpenGL',
+ '<@(glfw3_libraries)', # This is a hack since we're not actually using GLFW
],
},
}, {