diff options
author | Dane Springmeyer <dane@mapbox.com> | 2014-10-31 16:25:57 -0400 |
---|---|---|
committer | John Firebaugh <john.firebaugh@gmail.com> | 2014-10-31 17:14:30 -0400 |
commit | 28bfdbb9e4c28d91f35c2ab2e248693e0e8f0307 (patch) | |
tree | e0452a7b2fe708883ffd926972621bde82946b94 /linux | |
parent | 80040304b416f1cd82fa683235cfe2371113fc8c (diff) | |
download | qtlocation-mapboxgl-28bfdbb9e4c28d91f35c2ab2e248693e0e8f0307.tar.gz |
no need for touch workaround since linux app is built with make not xcode
Diffstat (limited to 'linux')
-rw-r--r-- | linux/mapboxgl-app.gyp | 15 |
1 files changed, 4 insertions, 11 deletions
diff --git a/linux/mapboxgl-app.gyp b/linux/mapboxgl-app.gyp index 537d4491ea..c4be409be3 100644 --- a/linux/mapboxgl-app.gyp +++ b/linux/mapboxgl-app.gyp @@ -4,16 +4,6 @@ ], 'targets': [ { - 'target_name': 'copy_styles', - 'type': 'none', - 'hard_dependency': 1, - 'dependencies': [ '../styles.gyp:touch_styles' ], # required for xcode http://openradar.appspot.com/7232149 - 'copies': [{ - 'files': [ '../styles/styles' ], - 'destination': '<(PRODUCT_DIR)' - }], - }, - { 'target_name': 'linuxapp', 'product_name': 'mapbox-gl', 'type': 'executable', @@ -52,11 +42,14 @@ }] ], 'dependencies': [ - 'copy_styles', '../mapboxgl.gyp:mbgl-standalone', '../mapboxgl.gyp:mbgl-linux', '../mapboxgl.gyp:copy_certificate_bundle', ], + 'copies': [{ + 'files': [ '../styles/styles' ], + 'destination': '<(PRODUCT_DIR)' + }], }, ], } |