summaryrefslogtreecommitdiffstats
path: root/Source/cmCommands.cxx
diff options
context:
space:
mode:
authorAndy Cedilnik <andy.cedilnik@kitware.com>2003-03-06 16:20:26 (GMT)
committerAndy Cedilnik <andy.cedilnik@kitware.com>2003-03-06 16:20:26 (GMT)
commit814b8856a0966a5d396583dcb36bbc8a225371af (patch)
treeaefa3a421a34471d25558e0f749ee531a9ee5d8a /Source/cmCommands.cxx
parentce750180baec52f1bb64fbd1afe7c1aff1338c5c (diff)
downloadCMake-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.cxx2
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);