Xcode: Select make program at build time

Extend the change made in commit v3.0.0-rc1~260^2~16 (Teach
GenerateBuildCommand to find its own make program, 2013-11-13) to have
the Xcode generator pick between "xcodebuild" and CMake's own copy of
"cmakexbuild" at build time based on the version of Xcode.
This commit is contained in:
Brad King 2015-01-28 13:59:32 -05:00
parent e4055a6144
commit 11e2e6cadf
1 changed files with 1 additions and 1 deletions

View File

@ -303,7 +303,7 @@ cmGlobalXCodeGenerator::GenerateBuildCommand(
{
// now build the test
makeCommand.push_back(
this->SelectMakeProgram(makeProgram, "xcodebuild")
this->SelectMakeProgram(makeProgram, this->GetXcodeBuildCommand())
);
makeCommand.push_back("-project");