diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2001-11-19 22:52:08 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2001-11-19 22:52:08 (GMT) |
commit | da17f30cb515775000ec7dd1d3fab8b3621c2587 (patch) | |
tree | 9548b3afab27b95fb4defa16b17aadfd02654d1a /Source/cmCommands.cxx | |
parent | 4d5f9deb00f851477258da139cde8362d14674c4 (diff) | |
download | CMake-da17f30cb515775000ec7dd1d3fab8b3621c2587.zip CMake-da17f30cb515775000ec7dd1d3fab8b3621c2587.tar.gz CMake-da17f30cb515775000ec7dd1d3fab8b3621c2587.tar.bz2 |
ENH: add new command VARIABLE_REQUIRES for better debugging of list files
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 9f9f64e..c51b263 100644 --- a/Source/cmCommands.cxx +++ b/Source/cmCommands.cxx @@ -54,6 +54,7 @@ #include "cmTargetLinkLibrariesCommand.cxx" #include "cmUseMangledMesaCommand.cxx" #include "cmUtilitySourceCommand.cxx" +#include "cmVariableRequiresCommand.cxx" #include "cmVTKWrapJavaCommand.cxx" #include "cmVTKWrapPythonCommand.cxx" #include "cmVTKWrapTclCommand.cxx" @@ -115,6 +116,7 @@ void GetPredefinedCommands(std::list<cmCommand*>& commands) commands.push_back(new cmTargetLinkLibrariesCommand); commands.push_back(new cmUseMangledMesaCommand); commands.push_back(new cmUtilitySourceCommand); + commands.push_back(new cmVariableRequiresCommand); commands.push_back(new cmVTKWrapJavaCommand); commands.push_back(new cmVTKWrapPythonCommand); commands.push_back(new cmVTKWrapTclCommand); |