2009-09-28 19:43:28 +04:00
|
|
|
/*============================================================================
|
|
|
|
CMake - Cross Platform Makefile Generator
|
|
|
|
Copyright 2000-2009 Kitware, Inc., Insight Software Consortium
|
2007-06-25 18:33:25 +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.
|
2007-06-25 18:33:25 +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.
|
|
|
|
============================================================================*/
|
2007-06-25 18:33:25 +04:00
|
|
|
#ifndef cmGetPropertyCommand_h
|
|
|
|
#define cmGetPropertyCommand_h
|
|
|
|
|
|
|
|
#include "cmCommand.h"
|
|
|
|
|
|
|
|
class cmGetPropertyCommand : public cmCommand
|
|
|
|
{
|
|
|
|
public:
|
2008-01-18 01:19:13 +03:00
|
|
|
cmGetPropertyCommand();
|
|
|
|
|
2012-08-13 21:42:58 +04:00
|
|
|
virtual cmCommand* Clone()
|
2007-06-25 18:33:25 +04:00
|
|
|
{
|
|
|
|
return new cmGetPropertyCommand;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* This is called when the command is first encountered in
|
|
|
|
* the input file.
|
|
|
|
*/
|
2008-01-23 18:28:26 +03:00
|
|
|
virtual bool InitialPass(std::vector<std::string> const& args,
|
|
|
|
cmExecutionStatus &status);
|
2007-06-25 18:33:25 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* This determines if the command is invoked when in script mode.
|
|
|
|
*/
|
2012-02-25 10:49:24 +04:00
|
|
|
virtual bool IsScriptable() const { return true; }
|
2007-06-25 18:33:25 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* The name of the command as specified in CMakeList.txt.
|
|
|
|
*/
|
2012-02-25 10:49:24 +04:00
|
|
|
virtual const char* GetName() const { return "get_property";}
|
2007-06-25 18:33:25 +04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Succinct documentation.
|
|
|
|
*/
|
2012-02-25 10:49:24 +04:00
|
|
|
virtual const char* GetTerseDocumentation() const
|
2007-06-25 18:33:25 +04:00
|
|
|
{
|
|
|
|
return "Get a property.";
|
|
|
|
}
|
2012-08-13 21:42:58 +04:00
|
|
|
|
2007-06-25 18:33:25 +04:00
|
|
|
/**
|
|
|
|
* Longer documentation.
|
|
|
|
*/
|
2012-02-25 10:49:24 +04:00
|
|
|
virtual const char* GetFullDocumentation() const
|
2007-06-25 18:33:25 +04:00
|
|
|
{
|
|
|
|
return
|
2008-01-18 01:19:13 +03:00
|
|
|
" get_property(<variable>\n"
|
|
|
|
" <GLOBAL |\n"
|
|
|
|
" DIRECTORY [dir] |\n"
|
|
|
|
" TARGET <target> |\n"
|
|
|
|
" SOURCE <source> |\n"
|
|
|
|
" TEST <test> |\n"
|
2009-03-10 18:10:59 +03:00
|
|
|
" CACHE <entry> |\n"
|
2008-01-18 01:19:13 +03:00
|
|
|
" VARIABLE>\n"
|
|
|
|
" PROPERTY <name>\n"
|
2008-04-01 22:22:09 +04:00
|
|
|
" [SET | DEFINED | BRIEF_DOCS | FULL_DOCS])\n"
|
2008-01-18 01:19:13 +03:00
|
|
|
"Get one property from one object in a scope. "
|
|
|
|
"The first argument specifies the variable in which to store the "
|
|
|
|
"result. "
|
|
|
|
"The second argument determines the scope from which to get the "
|
|
|
|
"property. It must be one of the following:\n"
|
|
|
|
"GLOBAL scope is unique and does not accept a name.\n"
|
|
|
|
"DIRECTORY scope defaults to the current directory but another "
|
|
|
|
"directory (already processed by CMake) may be named by full or "
|
|
|
|
"relative path.\n"
|
|
|
|
"TARGET scope must name one existing target.\n"
|
|
|
|
"SOURCE scope must name one source file.\n"
|
|
|
|
"TEST scope must name one existing test.\n"
|
2009-03-10 18:10:59 +03:00
|
|
|
"CACHE scope must name one cache entry.\n"
|
2008-01-18 01:19:13 +03:00
|
|
|
"VARIABLE scope is unique and does not accept a name.\n"
|
|
|
|
"The required PROPERTY option is immediately followed by the name "
|
|
|
|
"of the property to get. "
|
|
|
|
"If the property is not set an empty value is returned. "
|
2008-04-01 22:22:09 +04:00
|
|
|
"If the SET option is given the variable is set to a boolean "
|
2008-09-04 21:15:18 +04:00
|
|
|
"value indicating whether the property has been set. "
|
2008-01-18 01:19:13 +03:00
|
|
|
"If the DEFINED option is given the variable is set to a boolean "
|
2008-04-01 22:22:09 +04:00
|
|
|
"value indicating whether the property has been defined "
|
|
|
|
"such as with define_property. "
|
2008-01-18 01:19:13 +03:00
|
|
|
"If BRIEF_DOCS or FULL_DOCS is given then the variable is set to "
|
|
|
|
"a string containing documentation for the requested property. "
|
|
|
|
"If documentation is requested for a property that has not been "
|
|
|
|
"defined NOTFOUND is returned.";
|
2007-06-25 18:33:25 +04:00
|
|
|
}
|
2012-08-13 21:42:58 +04:00
|
|
|
|
2007-06-25 18:33:25 +04:00
|
|
|
cmTypeMacro(cmGetPropertyCommand, cmCommand);
|
2008-01-18 01:19:13 +03:00
|
|
|
private:
|
2008-04-01 22:22:09 +04:00
|
|
|
enum OutType { OutValue, OutDefined, OutBriefDoc, OutFullDoc, OutSet };
|
2008-01-18 01:19:13 +03:00
|
|
|
std::string Variable;
|
|
|
|
std::string Name;
|
|
|
|
std::string PropertyName;
|
|
|
|
OutType InfoType;
|
2007-06-25 18:33:25 +04:00
|
|
|
|
2008-01-18 01:19:13 +03:00
|
|
|
// Implementation of result storage.
|
|
|
|
bool StoreResult(const char* value);
|
2007-06-25 18:33:25 +04:00
|
|
|
|
2008-01-18 01:19:13 +03:00
|
|
|
// Implementation of each property type.
|
|
|
|
bool HandleGlobalMode();
|
|
|
|
bool HandleDirectoryMode();
|
|
|
|
bool HandleTargetMode();
|
|
|
|
bool HandleSourceMode();
|
|
|
|
bool HandleTestMode();
|
|
|
|
bool HandleVariableMode();
|
2009-03-10 18:10:59 +03:00
|
|
|
bool HandleCacheMode();
|
2008-01-18 01:19:13 +03:00
|
|
|
};
|
2007-06-25 18:33:25 +04:00
|
|
|
|
|
|
|
#endif
|