2009-09-28 19:43:28 +04:00
|
|
|
/*============================================================================
|
|
|
|
CMake - Cross Platform Makefile Generator
|
|
|
|
Copyright 2000-2009 Kitware, Inc., Insight Software Consortium
|
2005-07-31 19:51:42 +04:00
|
|
|
|
2009-09-28 19:43:28 +04:00
|
|
|
Distributed under the OSI-approved BSD License (the "License");
|
|
|
|
see accompanying file Copyright.txt for details.
|
2005-07-31 19:51:42 +04:00
|
|
|
|
2009-09-28 19: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.
|
|
|
|
============================================================================*/
|
2005-07-31 19:51:42 +04:00
|
|
|
#include "cmGetTestPropertyCommand.h"
|
|
|
|
|
|
|
|
#include "cmake.h"
|
|
|
|
#include "cmTest.h"
|
|
|
|
|
|
|
|
// cmGetTestPropertyCommand
|
2008-01-23 18:28:26 +03:00
|
|
|
bool cmGetTestPropertyCommand
|
|
|
|
::InitialPass(std::vector<std::string> const& args, cmExecutionStatus &)
|
2005-07-31 19:51:42 +04:00
|
|
|
{
|
|
|
|
if(args.size() < 3 )
|
|
|
|
{
|
|
|
|
this->SetError("called with incorrect number of arguments");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string testName = args[0];
|
2005-09-18 16:17:39 +04:00
|
|
|
std::string var = args[2];
|
2006-03-15 19:02:08 +03:00
|
|
|
cmTest *test = this->Makefile->GetTest(testName.c_str());
|
2005-07-31 19:51:42 +04:00
|
|
|
if (test)
|
|
|
|
{
|
2005-09-18 16:17:39 +04:00
|
|
|
const char *prop = test->GetProperty(args[1].c_str());
|
2005-07-31 19:51:42 +04:00
|
|
|
if (prop)
|
|
|
|
{
|
2006-03-15 19:02:08 +03:00
|
|
|
this->Makefile->AddDefinition(var.c_str(), prop);
|
2005-07-31 19:51:42 +04:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
2006-03-15 19:02:08 +03:00
|
|
|
this->Makefile->AddDefinition(var.c_str(), "NOTFOUND");
|
2005-07-31 19:51:42 +04:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|