diff options
author | Andy Cedilnik <andy.cedilnik@kitware.com> | 2003-03-06 16:20:26 (GMT) |
---|---|---|
committer | Andy Cedilnik <andy.cedilnik@kitware.com> | 2003-03-06 16:20:26 (GMT) |
commit | 814b8856a0966a5d396583dcb36bbc8a225371af (patch) | |
tree | aefa3a421a34471d25558e0f749ee531a9ee5d8a /Source/cmCommands.cxx | |
parent | ce750180baec52f1bb64fbd1afe7c1aff1338c5c (diff) | |
download | CMake-814b8856a0966a5d396583dcb36bbc8a225371af.zip CMake-814b8856a0966a5d396583dcb36bbc8a225371af.tar.gz CMake-814b8856a0966a5d396583dcb36bbc8a225371af.tar.bz2 |
Add command for accessing cmake properties. At this point the only properties are VARIABLES and CACHE_VARIABLES. Also add test for this feature
Diffstat (limited to 'Source/cmCommands.cxx')
-rw-r--r-- | Source/cmCommands.cxx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Source/cmCommands.cxx b/Source/cmCommands.cxx index 1cb2994..8aa07d1 100644 --- a/Source/cmCommands.cxx +++ b/Source/cmCommands.cxx @@ -46,6 +46,7 @@ #include "cmFindProgramCommand.cxx" #include "cmForEachCommand.cxx" #include "cmFLTKWrapUICommand.cxx" +#include "cmGetCMakePropertyCommand.cxx" #include "cmGetFilenameComponentCommand.cxx" #include "cmGetSourceFilePropertyCommand.cxx" #include "cmGetTargetPropertyCommand.cxx" @@ -132,6 +133,7 @@ void GetPredefinedCommands(std::list<cmCommand*>& commands) commands.push_back(new cmFindProgramCommand); commands.push_back(new cmForEachCommand); commands.push_back(new cmFLTKWrapUICommand); + commands.push_back(new cmGetCMakePropertyCommand); commands.push_back(new cmGetFilenameComponentCommand); commands.push_back(new cmGetSourceFilePropertyCommand); commands.push_back(new cmGetTargetPropertyCommand); |