summaryrefslogtreecommitdiffstats
path: root/Source/cmBootstrapCommands.cxx
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2007-05-13 11:16:25 (GMT)
committerBrad King <brad.king@kitware.com>2007-05-13 11:16:25 (GMT)
commit33d976e583decc598b96e3d6640f74051913e673 (patch)
tree53dd9076feae444de2b51d920d9ebfe4b96cb20c /Source/cmBootstrapCommands.cxx
parentef20a5f920fbb6552aafb00c066d281323907669 (diff)
downloadCMake-33d976e583decc598b96e3d6640f74051913e673.zip
CMake-33d976e583decc598b96e3d6640f74051913e673.tar.gz
CMake-33d976e583decc598b96e3d6640f74051913e673.tar.bz2
COMP: Need CMake 2.4 or a bootstrap cmake that has ADD_SUBDIRECTORY to build.
Diffstat (limited to 'Source/cmBootstrapCommands.cxx')
-rw-r--r--Source/cmBootstrapCommands.cxx2
1 files changed, 2 insertions, 0 deletions
diff --git a/Source/cmBootstrapCommands.cxx b/Source/cmBootstrapCommands.cxx
index 57654aa..c4bfeae 100644
--- a/Source/cmBootstrapCommands.cxx
+++ b/Source/cmBootstrapCommands.cxx
@@ -25,6 +25,7 @@
#include "cmAddDependenciesCommand.cxx"
#include "cmAddExecutableCommand.cxx"
#include "cmAddLibraryCommand.cxx"
+#include "cmAddSubDirectoryCommand.cxx"
#include "cmAddTestCommand.cxx"
#include "cmBuildCommand.cxx"
#include "cmCMakeMinimumRequired.cxx"
@@ -76,6 +77,7 @@ void GetBootstrapCommands(std::list<cmCommand*>& commands)
commands.push_back(new cmAddDependenciesCommand);
commands.push_back(new cmAddExecutableCommand);
commands.push_back(new cmAddLibraryCommand);
+ commands.push_back(new cmAddSubDirectoryCommand);
commands.push_back(new cmAddTestCommand);
commands.push_back(new cmBuildCommand);
commands.push_back(new cmCMakeMinimumRequired);