diff options
author | Brad King <brad.king@kitware.com> | 2006-06-01 19:51:24 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2006-06-01 19:51:24 (GMT) |
commit | 87d4d0e0394f30bb320b3939b1852a7cae2177cb (patch) | |
tree | b513f5cdebbefb99b4215ef5934b9ecd06720f57 /Source/CTest | |
parent | bfb0ec58e819ae4d168337c5aadf73764599adc8 (diff) | |
download | CMake-87d4d0e0394f30bb320b3939b1852a7cae2177cb.zip CMake-87d4d0e0394f30bb320b3939b1852a7cae2177cb.tar.gz CMake-87d4d0e0394f30bb320b3939b1852a7cae2177cb.tar.bz2 |
BUG: cmGlobalGenerator::Build should not always use the /fast target name because dependency checking is often required. It now takes an argument specifying whether to use the /fast target name, and the argument is currently only true for try-compiles.
Diffstat (limited to 'Source/CTest')
-rw-r--r-- | Source/CTest/cmCTestBuildAndTestHandler.cxx | 2 | ||||
-rw-r--r-- | Source/CTest/cmCTestBuildCommand.cxx | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/Source/CTest/cmCTestBuildAndTestHandler.cxx b/Source/CTest/cmCTestBuildAndTestHandler.cxx index b7a27d9..6948bc6 100644 --- a/Source/CTest/cmCTestBuildAndTestHandler.cxx +++ b/Source/CTest/cmCTestBuildAndTestHandler.cxx @@ -196,7 +196,7 @@ int cmCTestBuildAndTestHandler::RunCMakeAndTest(std::string* outstring) this->SourceDir.c_str(), this->BinaryDir.c_str(), this->BuildProject.c_str(), tarIt->c_str(), &output, this->BuildMakeProgram.c_str(), - this->CTest->GetConfigType().c_str(),!this->BuildNoClean); + this->CTest->GetConfigType().c_str(),!this->BuildNoClean, false); out << output; // if the build failed then return diff --git a/Source/CTest/cmCTestBuildCommand.cxx b/Source/CTest/cmCTestBuildCommand.cxx index 7838118..f6a196d 100644 --- a/Source/CTest/cmCTestBuildCommand.cxx +++ b/Source/CTest/cmCTestBuildCommand.cxx @@ -93,7 +93,7 @@ cmCTestGenericHandler* cmCTestBuildCommand::InitializeHandler() std::string buildCommand = this->GlobalGenerator->GenerateBuildCommand(cmakeMakeProgram, cmakeProjectName, - cmakeBuildAdditionalFlags, 0, cmakeBuildConfiguration, true); + cmakeBuildAdditionalFlags, 0, cmakeBuildConfiguration, true, false); this->CTest->SetCTestConfiguration("MakeCommand", buildCommand.c_str()); } else |