summaryrefslogtreecommitdiff
path: root/deps
diff options
context:
space:
mode:
authorKonstantin Käfer <mail@kkaefer.com>2014-10-22 11:55:34 +0200
committerKonstantin Käfer <mail@kkaefer.com>2014-10-22 12:01:56 +0200
commit13c698fa26eaa91cc9310aac52ee5c45cf3f60f5 (patch)
treed37bb65e623f163132b5c087c1a4d71eb2edbee9 /deps
parentbaa684eb9861d83c350a4acbc58d00568817b0cd (diff)
downloadqtlocation-mapboxgl-13c698fa26eaa91cc9310aac52ee5c45cf3f60f5.tar.gz
fix more xcode upgrade warnings
Diffstat (limited to 'deps')
-rw-r--r--deps/gyp/pylib/gyp/generator/xcode.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/deps/gyp/pylib/gyp/generator/xcode.py b/deps/gyp/pylib/gyp/generator/xcode.py
index a6faa4c063..783dafa0b0 100644
--- a/deps/gyp/pylib/gyp/generator/xcode.py
+++ b/deps/gyp/pylib/gyp/generator/xcode.py
@@ -31,6 +31,10 @@ _intermediate_var = 'INTERMEDIATE_DIR'
# targets that share the same BUILT_PRODUCTS_DIR.
_shared_intermediate_var = 'SHARED_INTERMEDIATE_DIR'
+# ONLY_ACTIVE_ARCH means that only the active architecture should be build for
+# Debugging purposes to shorten the build time
+_only_active_arch = 'ONLY_ACTIVE_ARCH'
+
_library_search_paths_var = 'LIBRARY_SEARCH_PATHS'
generator_default_variables = {
@@ -168,6 +172,8 @@ class XcodeProject(object):
xccl.SetBuildSetting(_shared_intermediate_var,
'$(SYMROOT)/DerivedSources/$(CONFIGURATION)')
+ xccl.ConfigurationNamed('Debug').SetBuildSetting(_only_active_arch, 'YES')
+
# Set user-specified project-wide build settings and config files. This
# is intended to be used very sparingly. Really, almost everything should
# go into target-specific build settings sections. The project-wide