summaryrefslogtreecommitdiffstats
path: root/Source/cmCommands.cxx
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2001-08-01 20:14:16 (GMT)
committerBrad King <brad.king@kitware.com>2001-08-01 20:14:16 (GMT)
commit8a03ccda075da86e9dcfc3ad5286aa0793d87619 (patch)
treead846f627db9aa6206b1d1ca61262dbe0ff2ab6d /Source/cmCommands.cxx
parentfda98f856286aa5622e1fc00d7ef32196e04e9b5 (diff)
downloadCMake-8a03ccda075da86e9dcfc3ad5286aa0793d87619.zip
CMake-8a03ccda075da86e9dcfc3ad5286aa0793d87619.tar.gz
CMake-8a03ccda075da86e9dcfc3ad5286aa0793d87619.tar.bz2
ENH: Added SUBDIR_DEPENDS command and corresponding support code. This command allows specification that a set of subdirectories be built before a particular directory.
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 bebf2ca..6c2dc24 100644
--- a/Source/cmCommands.cxx
+++ b/Source/cmCommands.cxx
@@ -49,6 +49,7 @@
#include "cmSourceFilesRemoveCommand.cxx"
#include "cmSourceGroupCommand.cxx"
#include "cmSubdirCommand.cxx"
+#include "cmSubdirDependsCommand.cxx"
#include "cmTargetLinkLibrariesCommand.cxx"
#include "cmUtilitySourceCommand.cxx"
#include "cmVTKWrapJavaCommand.cxx"
@@ -104,6 +105,7 @@ void GetPredefinedCommands(std::list<cmCommand*>& commands)
commands.push_back(new cmSourceFilesRemoveCommand);
commands.push_back(new cmSourceGroupCommand);
commands.push_back(new cmSubdirCommand);
+ commands.push_back(new cmSubdirDependsCommand);
commands.push_back(new cmTargetLinkLibrariesCommand);
commands.push_back(new cmUtilitySourceCommand);
commands.push_back(new cmVTKWrapJavaCommand);