2016-09-27 22:01:08 +03:00
|
|
|
/* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
|
|
|
|
file Copyright.txt or https://cmake.org/licensing for details. */
|
2002-08-28 22:49:25 +04:00
|
|
|
#include "cmTryCompileCommand.h"
|
2003-06-23 16:58:58 +04:00
|
|
|
|
2007-05-24 19:27:51 +04:00
|
|
|
// cmTryCompileCommand
|
2016-05-16 17:34:04 +03:00
|
|
|
bool cmTryCompileCommand::InitialPass(std::vector<std::string> const& argv,
|
|
|
|
cmExecutionStatus&)
|
2002-09-19 17:49:14 +04:00
|
|
|
{
|
2016-05-16 17:34:04 +03:00
|
|
|
if (argv.size() < 3) {
|
2002-09-19 17:49:14 +04:00
|
|
|
return false;
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2002-09-19 17:49:14 +04:00
|
|
|
|
2016-05-16 17:34:04 +03:00
|
|
|
if (this->Makefile->GetCMakeInstance()->GetWorkingMode() ==
|
|
|
|
cmake::FIND_PACKAGE_MODE) {
|
|
|
|
this->Makefile->IssueMessage(
|
|
|
|
cmake::FATAL_ERROR,
|
|
|
|
"The TRY_COMPILE() command is not supported in --find-package mode.");
|
2011-09-15 18:28:35 +04:00
|
|
|
return false;
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2011-09-15 18:28:35 +04:00
|
|
|
|
2016-02-19 21:23:48 +03:00
|
|
|
this->TryCompileCode(argv, false);
|
2002-09-23 21:32:14 +04:00
|
|
|
|
2007-05-24 19:27:51 +04:00
|
|
|
// if They specified clean then we clean up what we can
|
2016-05-16 17:34:04 +03:00
|
|
|
if (this->SrcFileSignature) {
|
|
|
|
if (!this->Makefile->GetCMakeInstance()->GetDebugTryCompile()) {
|
2007-05-24 19:27:51 +04:00
|
|
|
this->CleanupFiles(this->BinaryDirectory.c_str());
|
2002-09-23 19:06:01 +04:00
|
|
|
}
|
2016-05-16 17:34:04 +03:00
|
|
|
}
|
2007-05-24 19:27:51 +04:00
|
|
|
return true;
|
2002-09-23 19:06:01 +04:00
|
|
|
}
|