2009-09-28 11:43:28 -04:00
|
|
|
/*============================================================================
|
|
|
|
CMake - Cross Platform Makefile Generator
|
|
|
|
Copyright 2000-2009 Kitware, Inc., Insight Software Consortium
|
2005-07-31 11:51:42 -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.
|
2005-07-31 11:51:42 -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.
|
|
|
|
============================================================================*/
|
2005-07-31 11:51:42 -04:00
|
|
|
#include "cmGetTestPropertyCommand.h"
|
|
|
|
|
|
|
|
#include "cmake.h"
|
|
|
|
#include "cmTest.h"
|
|
|
|
|
|
|
|
// cmGetTestPropertyCommand
|
2008-01-23 10:28:26 -05:00
|
|
|
bool cmGetTestPropertyCommand
|
|
|
|
::InitialPass(std::vector<std::string> const& args, cmExecutionStatus &)
|
2005-07-31 11: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 08:17:39 -04:00
|
|
|
std::string var = args[2];
|
2014-03-11 00:04:11 +01:00
|
|
|
cmTest *test = this->Makefile->GetTest(testName);
|
2005-07-31 11:51:42 -04:00
|
|
|
if (test)
|
|
|
|
{
|
2015-06-06 09:41:20 +02:00
|
|
|
const char *prop = 0;
|
|
|
|
if (!args[1].empty())
|
|
|
|
{
|
|
|
|
prop = test->GetProperty(args[1]);
|
|
|
|
}
|
2005-07-31 11:51:42 -04:00
|
|
|
if (prop)
|
|
|
|
{
|
2014-03-11 00:04:11 +01:00
|
|
|
this->Makefile->AddDefinition(var, prop);
|
2005-07-31 11:51:42 -04:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
2014-03-11 00:04:11 +01:00
|
|
|
this->Makefile->AddDefinition(var, "NOTFOUND");
|
2005-07-31 11:51:42 -04:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|