diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2002-03-29 15:06:30 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2002-03-29 15:06:30 (GMT) |
commit | 8b3b49a010219eeba327d882e1fe38f721b6bed8 (patch) | |
tree | 095e639d4828f7a0e4e905c1f14d5fe32369e923 /Source/cmGetSourceFilePropertyCommand.h | |
parent | 627ab62ce093d8f50ed0ba50a1dd1081165b19f1 (diff) | |
download | CMake-8b3b49a010219eeba327d882e1fe38f721b6bed8.zip CMake-8b3b49a010219eeba327d882e1fe38f721b6bed8.tar.gz CMake-8b3b49a010219eeba327d882e1fe38f721b6bed8.tar.bz2 |
ENH: major change, the cmMakefile now contains a master list of cmSourceFile objects, the source lists reference the list via pointers, also you can now set properties on a file, like compile flags, abstract, etc.
Diffstat (limited to 'Source/cmGetSourceFilePropertyCommand.h')
-rw-r--r-- | Source/cmGetSourceFilePropertyCommand.h | 66 |
1 files changed, 66 insertions, 0 deletions
diff --git a/Source/cmGetSourceFilePropertyCommand.h b/Source/cmGetSourceFilePropertyCommand.h new file mode 100644 index 0000000..2e5aa0a --- /dev/null +++ b/Source/cmGetSourceFilePropertyCommand.h @@ -0,0 +1,66 @@ +/*========================================================================= + + Program: Insight Segmentation & Registration Toolkit + Module: $RCSfile$ + Language: C++ + Date: $Date$ + Version: $Revision$ + + Copyright (c) 2002 Insight Consortium. All rights reserved. + See ITKCopyright.txt or http://www.itk.org/HTML/Copyright.htm 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. + +=========================================================================*/ +#ifndef cmGetSourceFilePropertyCommand_h +#define cmGetSourceFilePropertyCommand_h + +#include "cmStandardIncludes.h" +#include "cmCommand.h" + +class cmGetSourceFilePropertyCommand : public cmCommand +{ +public: + virtual cmCommand* Clone() + { + return new cmGetSourceFilePropertyCommand; + } + + /** + * This is called when the command is first encountered in + * the input file. + */ + virtual bool InitialPass(std::vector<std::string> const& args); + + /** + * The name of the command as specified in CMakeList.txt. + */ + virtual const char* GetName() { return "GET_SOURCE_FILE_PROPERTY";} + + /** + * Succinct documentation. + */ + virtual const char* GetTerseDocumentation() + { + return "Set attributes for a specific list of files."; + } + + /** + * Longer documentation. + */ + virtual const char* GetFullDocumentation() + { + return + "GET_SOURCE_FILE_PROPERTY(VAR file [ABSTRACT|WRAP_EXCLUDE|FLAGS]) " + "Get properties on a file. The syntax for the command is to list all the files you want " + "to change, and then provide the values you want to set next."; + } + + cmTypeMacro(cmGetSourceFilePropertyCommand, cmCommand); +}; + + + +#endif |