diff options
author | Brad King <brad.king@kitware.com> | 2001-03-15 23:09:16 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2001-03-15 23:09:16 (GMT) |
commit | be4db9150c6b3bd8a6c39d48fa693a6209c34740 (patch) | |
tree | 033cb0942c8e0b7eb43afbfaef19ec403ab56083 /Source/cmCommands.cxx | |
parent | b9a8948ec879f2e6a9a2f6220bba061c44c8d4bb (diff) | |
download | CMake-be4db9150c6b3bd8a6c39d48fa693a6209c34740.zip CMake-be4db9150c6b3bd8a6c39d48fa693a6209c34740.tar.gz CMake-be4db9150c6b3bd8a6c39d48fa693a6209c34740.tar.bz2 |
ENH: Added INCLUDE_REGULAR_EXPRESSION command to set regular expression used in dependency checking.
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 f4abf32..7bdcaac 100644 --- a/Source/cmCommands.cxx +++ b/Source/cmCommands.cxx @@ -41,6 +41,7 @@ #include "cmWrapTclCommand.cxx" #include "cmBuildSharedLibrariesCommand.cxx" #include "cmUtilitySourceCommand.cxx" +#include "cmIncludeRegularExpressionCommand.cxx" void GetPredefinedCommands(std::list<cmCommand*>& commands) { @@ -79,6 +80,7 @@ void GetPredefinedCommands(std::list<cmCommand*>& commands) commands.push_back(new cmWrapTclCommand); commands.push_back(new cmBuildSharedLibrariesCommand); commands.push_back(new cmUtilitySourceCommand); + commands.push_back(new cmIncludeRegularExpressionCommand); } |