summaryrefslogtreecommitdiff
path: root/mapboxgl.gyp
diff options
context:
space:
mode:
authorKonstantin Käfer <mail@kkaefer.com>2014-08-12 13:16:20 +0200
committerKonstantin Käfer <mail@kkaefer.com>2014-08-12 13:16:20 +0200
commit9b9ad20a90f55ffb31bad71d724845d9e5511a4f (patch)
tree5bd92a12f93b75f6d70df6e18bbcb29e838ecca0 /mapboxgl.gyp
parentfae1c157f6fe15097bb3ca663dd62775ed608622 (diff)
parentbdfc1036d3b0148fa0f57a277f7686b4b38e2071 (diff)
downloadqtlocation-mapboxgl-9b9ad20a90f55ffb31bad71d724845d9e5511a4f.tar.gz
Merge branch 'master' into style-parser-test
Conflicts: mapboxgl.gyp
Diffstat (limited to 'mapboxgl.gyp')
-rw-r--r--mapboxgl.gyp45
1 files changed, 19 insertions, 26 deletions
diff --git a/mapboxgl.gyp b/mapboxgl.gyp
index 2b27222520..5af90fbc97 100644
--- a/mapboxgl.gyp
+++ b/mapboxgl.gyp
@@ -54,41 +54,36 @@
],
},
{
- 'target_name': 'bundle_styles',
+ 'target_name': 'touch_styles',
'type': 'none',
'hard_dependency': 1,
'actions': [
{
'action_name': 'Touch Stylesheet Directory',
'inputs': ['styles'],
- 'outputs': ['styles'],
- 'action': ['touch', 'styles'], # required for xcode http://openradar.appspot.com/7232149
+ 'outputs': ['<(PRODUCT_DIR)/'], # need to specify a distinct directory
+ 'action': ['touch', 'styles'],
}
],
+ },
+ {
+ 'target_name': 'bundle_styles',
+ 'type': 'none',
+ 'hard_dependency': 1,
+ 'dependencies': [ 'touch_styles' ], # required for xcode http://openradar.appspot.com/7232149
'direct_dependent_settings': {
- 'mac_bundle_resources': [
- 'styles',
- ],
+ 'mac_bundle_resources': [ 'styles' ],
}
},
{
'target_name': 'copy_styles',
'type': 'none',
'hard_dependency': 1,
- 'actions': [
- {
- 'action_name': 'Touch Stylesheet Directory',
- 'inputs': ['styles'],
- 'outputs': ['styles'],
- 'action': ['touch', 'styles'], # required for xcode http://openradar.appspot.com/7232149
- }
- ],
- 'copies': [
- {
- 'files': [ 'styles' ],
- 'destination': '<(PRODUCT_DIR)'
- }
- ]
+ 'dependencies': [ 'touch_styles' ], # required for xcode http://openradar.appspot.com/7232149
+ 'copies': [{
+ 'files': [ 'styles' ],
+ 'destination': '<(PRODUCT_DIR)'
+ }],
},
{
'target_name': 'copy_fixtures',
@@ -108,12 +103,10 @@
'target_name': 'copy_certificate_bundle',
'type': 'none',
'hard_dependency': 1,
- 'copies': [
- {
- 'files': [ 'common/ca-bundle.crt' ],
- 'destination': '<(PRODUCT_DIR)'
- }
- ]
+ 'copies': [{
+ 'files': [ 'common/ca-bundle.crt' ],
+ 'destination': '<(PRODUCT_DIR)'
+ }],
},
{
'target_name': 'mapboxgl',