2002-12-21 19:14:47 +03:00
|
|
|
/*=========================================================================
|
|
|
|
|
|
|
|
Program: CMake - Cross-Platform Makefile Generator
|
|
|
|
Module: $RCSfile$
|
|
|
|
Language: C++
|
|
|
|
Date: $Date$
|
|
|
|
Version: $Revision$
|
|
|
|
|
|
|
|
Copyright (c) 2002 Kitware, Inc., Insight Consortium. All rights reserved.
|
|
|
|
See Copyright.txt or http://www.cmake.org/HTML/Copyright.html for details.
|
|
|
|
|
|
|
|
This software is distributed WITHOUT ANY WARRANTY; without even
|
|
|
|
the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
|
|
|
|
PURPOSE. See the above copyright notices for more information.
|
|
|
|
|
|
|
|
=========================================================================*/
|
|
|
|
#include "cmGetTargetPropertyCommand.h"
|
|
|
|
|
|
|
|
// cmSetTargetPropertyCommand
|
2008-01-23 18:28:26 +03:00
|
|
|
bool cmGetTargetPropertyCommand
|
|
|
|
::InitialPass(std::vector<std::string> const& args, cmExecutionStatus &)
|
2002-12-21 19:14:47 +03:00
|
|
|
{
|
|
|
|
if(args.size() != 3 )
|
|
|
|
{
|
|
|
|
this->SetError("called with incorrect number of arguments");
|
|
|
|
return false;
|
|
|
|
}
|
2007-05-31 20:03:52 +04:00
|
|
|
std::string var = args[0].c_str();
|
2002-12-21 19:14:47 +03:00
|
|
|
const char* targetName = args[1].c_str();
|
2005-06-20 22:00:48 +04:00
|
|
|
|
2008-01-28 16:38:36 +03:00
|
|
|
if(cmTarget* tgt = this->Makefile->FindTargetToUse(targetName))
|
2002-12-21 19:14:47 +03:00
|
|
|
{
|
2005-06-20 22:00:48 +04:00
|
|
|
cmTarget& target = *tgt;
|
|
|
|
const char *prop = target.GetProperty(args[2].c_str());
|
|
|
|
if (prop)
|
2002-12-21 19:14:47 +03:00
|
|
|
{
|
2007-05-31 20:03:52 +04:00
|
|
|
this->Makefile->AddDefinition(var.c_str(), prop);
|
2002-12-21 19:14:47 +03:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
2007-05-31 20:03:52 +04:00
|
|
|
this->Makefile->AddDefinition(var.c_str(), (var+"-NOTFOUND").c_str());
|
2002-12-21 19:14:47 +03:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|