summaryrefslogtreecommitdiffstats
path: root/Source/cmCommands.cxx
diff options
context:
space:
mode:
authorAnonymous <kitware@kitware.com>2001-04-30 14:52:58 (GMT)
committerAnonymous <kitware@kitware.com>2001-04-30 14:52:58 (GMT)
commitd6fae5faf0ec5f0a4d4e4d12424b92c7a6fde22a (patch)
treed31b4f767866387ee4864210fe26515ad22208ce /Source/cmCommands.cxx
parent2da0c57d46d5b68e19b60c4e6560fbd80f808ab0 (diff)
downloadCMake-d6fae5faf0ec5f0a4d4e4d12424b92c7a6fde22a.zip
CMake-d6fae5faf0ec5f0a4d4e4d12424b92c7a6fde22a.tar.gz
CMake-d6fae5faf0ec5f0a4d4e4d12424b92c7a6fde22a.tar.bz2
New command: INCLUDE(somefile.txt)
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 8c2224e..cc49f89 100644
--- a/Source/cmCommands.cxx
+++ b/Source/cmCommands.cxx
@@ -52,6 +52,7 @@
#include "cmEndIfCommand.cxx"
#include "cmAddDefinitionsCommand.cxx"
#include "cmOptionCommand.cxx"
+#include "cmIncludeCommand.cxx"
void GetPredefinedCommands(std::list<cmCommand*>& commands)
{
@@ -101,6 +102,7 @@ void GetPredefinedCommands(std::list<cmCommand*>& commands)
commands.push_back(new cmEndIfCommand);
commands.push_back(new cmAddDefinitionsCommand);
commands.push_back(new cmOptionCommand);
+ commands.push_back(new cmIncludeCommand);
}