diff options
author | Anonymous <kitware@kitware.com> | 2001-04-30 14:52:58 (GMT) |
---|---|---|
committer | Anonymous <kitware@kitware.com> | 2001-04-30 14:52:58 (GMT) |
commit | d6fae5faf0ec5f0a4d4e4d12424b92c7a6fde22a (patch) | |
tree | d31b4f767866387ee4864210fe26515ad22208ce /Source/cmCommands.cxx | |
parent | 2da0c57d46d5b68e19b60c4e6560fbd80f808ab0 (diff) | |
download | CMake-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.cxx | 2 |
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); } |