diff options
author | Andy Cedilnik <andy.cedilnik@kitware.com> | 2004-04-23 20:20:36 (GMT) |
---|---|---|
committer | Andy Cedilnik <andy.cedilnik@kitware.com> | 2004-04-23 20:20:36 (GMT) |
commit | aff8c7bcd6fe751974c2e82147d1a29928236209 (patch) | |
tree | 9be11469b702704fb44204b91ca5e50e6d1a9a41 /Source/cmCommands.cxx | |
parent | 0b7d154ebd1e2ab713a8f5018e26c4b0d8b823c4 (diff) | |
download | CMake-aff8c7bcd6fe751974c2e82147d1a29928236209.zip CMake-aff8c7bcd6fe751974c2e82147d1a29928236209.tar.gz CMake-aff8c7bcd6fe751974c2e82147d1a29928236209.tar.bz2 |
ENH: Add GET/SET_DIRECTORY_PROPERTY/PROPERTIES commands so that we can change include directories and get all sorts of things. Closes Bug #25 - Get_CMAKE_PROPERTIES
Diffstat (limited to 'Source/cmCommands.cxx')
-rw-r--r-- | Source/cmCommands.cxx | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Source/cmCommands.cxx b/Source/cmCommands.cxx index 4a7417a..96c5a6e 100644 --- a/Source/cmCommands.cxx +++ b/Source/cmCommands.cxx @@ -81,6 +81,7 @@ #include "cmExportLibraryDependencies.cxx" #include "cmFLTKWrapUICommand.cxx" #include "cmGetCMakePropertyCommand.cxx" +#include "cmGetDirectoryPropertyCommand.cxx" #include "cmGetSourceFilePropertyCommand.cxx" #include "cmGetTargetPropertyCommand.cxx" #include "cmITKWrapTclCommand.cxx" @@ -89,6 +90,7 @@ #include "cmLoadCacheCommand.cxx" #include "cmOutputRequiredFilesCommand.cxx" #include "cmRemoveCommand.cxx" +#include "cmSetDirectoryPropertiesCommand.cxx" #include "cmSetTargetPropertiesCommand.cxx" #include "cmSourceFilesCommand.cxx" #include "cmSourceFilesRemoveCommand.cxx" @@ -171,6 +173,7 @@ void GetPredefinedCommands(std::list<cmCommand*>& commands) commands.push_back(new cmExportLibraryDependenciesCommand); commands.push_back(new cmFLTKWrapUICommand); commands.push_back(new cmGetCMakePropertyCommand); + commands.push_back(new cmGetDirectoryPropertyCommand); commands.push_back(new cmGetSourceFilePropertyCommand); commands.push_back(new cmGetTargetPropertyCommand); commands.push_back(new cmITKWrapTclCommand); @@ -180,6 +183,7 @@ void GetPredefinedCommands(std::list<cmCommand*>& commands) commands.push_back(new cmLoadCommandCommand); commands.push_back(new cmOutputRequiredFilesCommand); commands.push_back(new cmRemoveCommand); + commands.push_back(new cmSetDirectoryPropertiesCommand); commands.push_back(new cmSetTargetPropertiesCommand); commands.push_back(new cmSourceFilesCommand); commands.push_back(new cmSourceFilesRemoveCommand); |