2009-09-28 11:43:28 -04:00
|
|
|
/*============================================================================
|
|
|
|
CMake - Cross Platform Makefile Generator
|
|
|
|
Copyright 2000-2009 Kitware, Inc., Insight Software Consortium
|
2002-08-28 14:49:25 -04:00
|
|
|
|
2009-09-28 11:43:28 -04:00
|
|
|
Distributed under the OSI-approved BSD License (the "License");
|
|
|
|
see accompanying file Copyright.txt for details.
|
2002-08-28 14:49:25 -04:00
|
|
|
|
2009-09-28 11:43:28 -04:00
|
|
|
This software is distributed WITHOUT ANY WARRANTY; without even the
|
|
|
|
implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
See the License for more information.
|
|
|
|
============================================================================*/
|
2002-08-28 14:49:25 -04:00
|
|
|
#include "cmTryCompileCommand.h"
|
2003-06-23 08:58:58 -04:00
|
|
|
|
2007-05-24 11:27:51 -04:00
|
|
|
// cmTryCompileCommand
|
2008-01-23 10:28:26 -05:00
|
|
|
bool cmTryCompileCommand
|
|
|
|
::InitialPass(std::vector<std::string> const& argv, cmExecutionStatus &)
|
2002-09-19 09:49:14 -04:00
|
|
|
{
|
|
|
|
if(argv.size() < 3)
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2011-09-15 16:28:35 +02:00
|
|
|
if(this->Makefile->GetCMakeInstance()->GetWorkingMode() ==
|
|
|
|
cmake::FIND_PACKAGE_MODE)
|
|
|
|
{
|
2011-09-27 18:59:42 +02:00
|
|
|
this->Makefile->IssueMessage(cmake::FATAL_ERROR,
|
2011-09-15 16:28:35 +02:00
|
|
|
"The TRY_COMPILE() command is not supported in --find-package mode.");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2007-05-24 11:27:51 -04:00
|
|
|
this->TryCompileCode(argv);
|
2002-09-23 13:32:14 -04:00
|
|
|
|
2007-05-24 11:27:51 -04:00
|
|
|
// if They specified clean then we clean up what we can
|
|
|
|
if (this->SrcFileSignature)
|
2002-09-23 11:06:01 -04:00
|
|
|
{
|
2007-05-24 11:27:51 -04:00
|
|
|
if(!this->Makefile->GetCMakeInstance()->GetDebugTryCompile())
|
2002-09-23 11:06:01 -04:00
|
|
|
{
|
2007-05-24 11:27:51 -04:00
|
|
|
this->CleanupFiles(this->BinaryDirectory.c_str());
|
2002-09-23 11:06:01 -04:00
|
|
|
}
|
|
|
|
}
|
2007-05-24 11:27:51 -04:00
|
|
|
return true;
|
2002-09-23 11:06:01 -04:00
|
|
|
}
|