summaryrefslogtreecommitdiffstats
path: root/Tests
diff options
context:
space:
mode:
authorFred Baksik <fdk17@ftml.net>2020-10-26 17:28:54 (GMT)
committerFred Baksik <fdk17@ftml.net>2020-10-26 17:28:54 (GMT)
commite794509faa4ca430072539e0ab5046fca4cd0028 (patch)
tree77ec96504b72cb176d5f95d6b640c37837b61435 /Tests
parentb3f1a292266099865e0896be9fd0d40803bda7e0 (diff)
downloadCMake-e794509faa4ca430072539e0ab5046fca4cd0028.zip
CMake-e794509faa4ca430072539e0ab5046fca4cd0028.tar.gz
CMake-e794509faa4ca430072539e0ab5046fca4cd0028.tar.bz2
XCode: Use -j build option when job capacity is specified by user
Fixes: #18304
Diffstat (limited to 'Tests')
-rw-r--r--Tests/RunCMake/CommandLine/RunCMakeTest.cmake4
1 files changed, 2 insertions, 2 deletions
diff --git a/Tests/RunCMake/CommandLine/RunCMakeTest.cmake b/Tests/RunCMake/CommandLine/RunCMakeTest.cmake
index 76ca898..b9c5aa2 100644
--- a/Tests/RunCMake/CommandLine/RunCMakeTest.cmake
+++ b/Tests/RunCMake/CommandLine/RunCMakeTest.cmake
@@ -201,8 +201,8 @@ function(run_BuildDir)
run_cmake_command(BuildDir--build--parallel-large ${CMAKE_COMMAND} -E chdir ..
${CMAKE_COMMAND} --build BuildDir-build --parallel 4294967293)
- # No default jobs for Xcode and FreeBSD build command
- if(NOT RunCMake_GENERATOR MATCHES "Xcode" AND NOT CMAKE_SYSTEM_NAME MATCHES "FreeBSD")
+ # No default jobs for FreeBSD build command
+ if(NOT CMAKE_SYSTEM_NAME MATCHES "FreeBSD")
run_cmake_command(BuildDir--build-jobs-no-number ${CMAKE_COMMAND} -E chdir ..
${CMAKE_COMMAND} --build BuildDir-build -j)
run_cmake_command(BuildDir--build-jobs-no-number-trailing--target ${CMAKE_COMMAND} -E chdir ..