diff options
author | Ken Martin <ken.martin@kitware.com> | 2001-06-26 14:01:03 (GMT) |
---|---|---|
committer | Ken Martin <ken.martin@kitware.com> | 2001-06-26 14:01:03 (GMT) |
commit | 43ac1a3a86193fa72795e98e2d51d3f48209082b (patch) | |
tree | 1d0cd0b6b538f7b685f3d0e9ebecc515c065e875 /Source/cmCommands.cxx | |
parent | 78cc9b21e097a5c1205b1f5bb486ac3acb58dbaf (diff) | |
download | CMake-43ac1a3a86193fa72795e98e2d51d3f48209082b.zip CMake-43ac1a3a86193fa72795e98e2d51d3f48209082b.tar.gz CMake-43ac1a3a86193fa72795e98e2d51d3f48209082b.tar.bz2 |
added add dependencies command
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 71cea1e..24b0994 100644 --- a/Source/cmCommands.cxx +++ b/Source/cmCommands.cxx @@ -6,6 +6,7 @@ #include "cmAbstractFilesCommand.cxx" #include "cmAddCustomTargetCommand.cxx" #include "cmAddDefinitionsCommand.cxx" +#include "cmAddDependenciesCommand.cxx" #include "cmAddExecutableCommand.cxx" #include "cmAddLibraryCommand.cxx" #include "cmAddTestCommand.cxx" @@ -57,6 +58,7 @@ void GetPredefinedCommands(std::list<cmCommand*>& commands) commands.push_back(new cmAbstractFilesCommand); commands.push_back(new cmAddCustomTargetCommand); commands.push_back(new cmAddDefinitionsCommand); + commands.push_back(new cmAddDependenciesCommand); commands.push_back(new cmAddExecutableCommand); commands.push_back(new cmAddLibraryCommand); commands.push_back(new cmAddTestCommand); |