summaryrefslogtreecommitdiff
path: root/mbgl.gyp
diff options
context:
space:
mode:
authorKonstantin Käfer <mail@kkaefer.com>2015-01-23 16:31:48 +0100
committerKonstantin Käfer <mail@kkaefer.com>2015-02-04 10:49:07 +0100
commit272fa8935ed1e97a7c8a5e6cbd44bb47ac7dc00b (patch)
tree50b5747dd57680acadb4ab45ad52e075553ec11e /mbgl.gyp
parentfbe30e04c48353a9fdd14151728e27ffe168c9ca (diff)
downloadqtlocation-mapboxgl-272fa8935ed1e97a7c8a5e6cbd44bb47ac7dc00b.tar.gz
make storage lib separate so we can build without storage libs
Diffstat (limited to 'mbgl.gyp')
-rw-r--r--mbgl.gyp38
1 files changed, 38 insertions, 0 deletions
diff --git a/mbgl.gyp b/mbgl.gyp
new file mode 100644
index 0000000000..2f65caa442
--- /dev/null
+++ b/mbgl.gyp
@@ -0,0 +1,38 @@
+{
+ 'includes': [
+ './gyp/common.gypi',
+ './gyp/shaders.gypi',
+ './gyp/version.gypi',
+ './gyp/styles.gypi',
+ './gyp/certificates.gypi',
+ './gyp/mbgl-core.gypi',
+ './gyp/mbgl-headless.gypi',
+ './gyp/mbgl-storage-curl.gypi',
+ './gyp/install.gypi',
+ ],
+
+ 'conditions': [
+ ['platform == "osx"', {
+ 'includes': [
+ './gyp/mbgl-osx.gypi',
+ './gyp/mbgl-storage-cocoa.gypi'
+ ],
+ }],
+ ['platform == "ios"', {
+ 'includes': [
+ './gyp/mbgl-ios.gypi',
+ './gyp/mbgl-storage-cocoa.gypi'
+ ],
+ }],
+ ['platform == "linux"', {
+ 'includes': [
+ './gyp/mbgl-linux.gypi'
+ ],
+ }],
+ ['platform == "android"', {
+ 'includes': [
+ './gyp/mbgl-android.gypi'
+ ],
+ }],
+ ],
+}