summaryrefslogtreecommitdiffstats
path: root/Source/cmCommands.cxx
diff options
context:
space:
mode:
authorKen Martin <ken.martin@kitware.com>2001-06-26 14:01:03 (GMT)
committerKen Martin <ken.martin@kitware.com>2001-06-26 14:01:03 (GMT)
commit43ac1a3a86193fa72795e98e2d51d3f48209082b (patch)
tree1d0cd0b6b538f7b685f3d0e9ebecc515c065e875 /Source/cmCommands.cxx
parent78cc9b21e097a5c1205b1f5bb486ac3acb58dbaf (diff)
downloadCMake-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.cxx2
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);