diff options
author | Jason Wray <jason@mapbox.com> | 2018-11-21 17:40:53 -0500 |
---|---|---|
committer | Jason Wray <friedbunny@users.noreply.github.com> | 2019-03-06 11:38:58 -0800 |
commit | 9bfc73316845cd93e0c56057c1dcc15f56a70e2d (patch) | |
tree | d03899cec6ac5382c42cea568f09c430b16b6376 /Makefile | |
parent | af370275d2a7bd6a389597274622fab54acd6153 (diff) | |
download | qtlocation-mapboxgl-9bfc73316845cd93e0c56057c1dcc15f56a70e2d.tar.gz |
[darwin, build] Explicitly specify number of jobs for CLI builds
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -70,7 +70,8 @@ MACOS_COMPDB_PATH = $(MACOS_OUTPUT_PATH)/compdb/$(BUILDTYPE) MACOS_XCODEBUILD = xcodebuild \ -derivedDataPath $(MACOS_OUTPUT_PATH) \ -configuration $(BUILDTYPE) \ - -workspace $(MACOS_WORK_PATH) + -workspace $(MACOS_WORK_PATH) \ + -jobs $(JOBS) ifneq ($(CI),) MACOS_XCODEBUILD += -xcconfig platform/darwin/ci.xcconfig @@ -209,7 +210,8 @@ IOS_XCODEBUILD_SIM = xcodebuild \ -derivedDataPath $(IOS_OUTPUT_PATH) \ -configuration $(BUILDTYPE) -sdk iphonesimulator \ -destination 'platform=iOS Simulator,name=iPhone 6,OS=latest' \ - -workspace $(IOS_WORK_PATH) + -workspace $(IOS_WORK_PATH) \ + -jobs $(JOBS) ifneq ($(CI),) IOS_XCODEBUILD_SIM += -xcconfig platform/darwin/ci.xcconfig |