summaryrefslogtreecommitdiff
path: root/linux/mapboxgl-app.gyp
diff options
context:
space:
mode:
Diffstat (limited to 'linux/mapboxgl-app.gyp')
-rw-r--r--linux/mapboxgl-app.gyp25
1 files changed, 18 insertions, 7 deletions
diff --git a/linux/mapboxgl-app.gyp b/linux/mapboxgl-app.gyp
index 913a1fac45..57bd1171b2 100644
--- a/linux/mapboxgl-app.gyp
+++ b/linux/mapboxgl-app.gyp
@@ -22,13 +22,24 @@
'<@(glfw3_cflags)',
'-I<(boost_root)/include',
],
- 'libraries': [
- '<@(png_ldflags)',
- '<@(sqlite3_ldflags)',
- '<@(glfw3_static_libs)',
- '<@(glfw3_ldflags)',
- '<@(curl_ldflags)',
- '<@(zlib_ldflags)',
+ 'variables': {
+ 'ldflags': [
+ '<@(png_ldflags)',
+ '<@(sqlite3_ldflags)',
+ '<@(glfw3_static_libs)',
+ '<@(glfw3_ldflags)',
+ '<@(curl_ldflags)',
+ '<@(zlib_ldflags)',
+ ],
+ },
+ 'conditions': [
+ ['OS == "mac"', {
+ 'xcode_settings': {
+ 'OTHER_LDFLAGS': [ '<@(ldflags)' ],
+ }
+ }, {
+ 'libraries': [ '<@(ldflags)' ],
+ }]
],
'dependencies': [
'../mapboxgl.gyp:mbgl-standalone',