summaryrefslogtreecommitdiff
path: root/linux/mapboxgl-app.gypi
diff options
context:
space:
mode:
Diffstat (limited to 'linux/mapboxgl-app.gypi')
-rw-r--r--linux/mapboxgl-app.gypi57
1 files changed, 57 insertions, 0 deletions
diff --git a/linux/mapboxgl-app.gypi b/linux/mapboxgl-app.gypi
new file mode 100644
index 0000000000..433a061e43
--- /dev/null
+++ b/linux/mapboxgl-app.gypi
@@ -0,0 +1,57 @@
+{
+ 'includes': [
+ '../gyp/common.gypi',
+ ],
+ 'targets': [
+ { 'target_name': 'linuxapp',
+ 'product_name': 'mapbox-gl',
+ 'type': 'executable',
+
+ 'dependencies': [
+ '../mbgl.gyp:core',
+ '../mbgl.gyp:platform-<(platform_lib)',
+ '../mbgl.gyp:http-<(http_lib)',
+ '../mbgl.gyp:asset-<(asset_lib)',
+ '../mbgl.gyp:cache-<(cache_lib)',
+ '../mbgl.gyp:bundle_styles',
+ '../mbgl.gyp:copy_certificate_bundle',
+ ],
+
+ 'sources': [
+ 'main.cpp',
+ '../platform/default/settings_json.cpp',
+ '../platform/default/glfw_view.cpp',
+ '../platform/default/log_stderr.cpp',
+ ],
+
+ 'variables' : {
+ 'cflags_cc': [
+ '<@(glfw3_cflags)',
+ ],
+ 'ldflags': [
+ '<@(glfw3_ldflags)',
+ ],
+ 'libraries': [
+ '<@(glfw3_static_libs)',
+ ],
+ },
+
+ 'conditions': [
+ ['OS == "mac"', {
+ 'libraries': [ '<@(libraries)' ],
+ 'xcode_settings': {
+ 'SDKROOT': 'macosx',
+ 'SUPPORTED_PLATFORMS':'macosx',
+ 'OTHER_CPLUSPLUSFLAGS': [ '<@(cflags_cc)' ],
+ 'OTHER_LDFLAGS': [ '<@(ldflags)' ],
+ 'SDKROOT': 'macosx',
+ 'MACOSX_DEPLOYMENT_TARGET': '10.9',
+ }
+ }, {
+ 'cflags_cc': [ '<@(cflags_cc)' ],
+ 'libraries': [ '<@(libraries)', '<@(ldflags)' ],
+ }]
+ ],
+ },
+ ],
+}