summaryrefslogtreecommitdiff
path: root/Source/cmCommands.cxx
diff options
context:
space:
mode:
authorPhil Pritchett <p.pritchett@2d3.com>2001-10-31 07:03:32 -0500
committerPhil Pritchett <p.pritchett@2d3.com>2001-10-31 07:03:32 -0500
commit4ba36ca453792be53916d29ee056f94232fd85f7 (patch)
tree945337627151687961e96d5f7c556ec2712faa1c /Source/cmCommands.cxx
parent4a8b9ecf98d33b891f83dd75b2158f50a2d8dcb1 (diff)
downloadcmake-4ba36ca453792be53916d29ee056f94232fd85f7.tar.gz
INCLUDE_EXTERNAL_MSPROJECT 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 55d8da6c42..550f58061d 100644
--- a/Source/cmCommands.cxx
+++ b/Source/cmCommands.cxx
@@ -31,6 +31,7 @@
#include "cmIfCommand.cxx"
#include "cmIncludeCommand.cxx"
#include "cmIncludeDirectoryCommand.cxx"
+#include "cmIncludeExternalMSProjectCommand.cxx"
#include "cmIncludeRegularExpressionCommand.cxx"
#include "cmInstallFilesCommand.cxx"
#include "cmInstallProgramsCommand.cxx"
@@ -89,6 +90,7 @@ void GetPredefinedCommands(std::list<cmCommand*>& commands)
commands.push_back(new cmIfCommand);
commands.push_back(new cmIncludeCommand);
commands.push_back(new cmIncludeDirectoryCommand);
+ commands.push_back(new cmIncludeExternalMSProjectCommand);
commands.push_back(new cmIncludeRegularExpressionCommand);
commands.push_back(new cmInstallFilesCommand);
commands.push_back(new cmInstallProgramsCommand);