diff options
author | Ken Martin <ken.martin@kitware.com> | 2001-02-26 22:17:34 (GMT) |
---|---|---|
committer | Ken Martin <ken.martin@kitware.com> | 2001-02-26 22:17:34 (GMT) |
commit | acbd160dd2731b2a77a8fd6fb444b52e8f0676a0 (patch) | |
tree | f93d16f4f3c5a946807374bf4b54e93d4b27f92e /Source/cmCommands.cxx | |
parent | 32e738cd0c43d3738d988eee876a68cefc365769 (diff) | |
download | CMake-acbd160dd2731b2a77a8fd6fb444b52e8f0676a0.zip CMake-acbd160dd2731b2a77a8fd6fb444b52e8f0676a0.tar.gz CMake-acbd160dd2731b2a77a8fd6fb444b52e8f0676a0.tar.bz2 |
a variety of fixes and enhancements
Diffstat (limited to 'Source/cmCommands.cxx')
-rw-r--r-- | Source/cmCommands.cxx | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Source/cmCommands.cxx b/Source/cmCommands.cxx index 76ccce0..5049d5c 100644 --- a/Source/cmCommands.cxx +++ b/Source/cmCommands.cxx @@ -24,6 +24,8 @@ #include "cmWin32DefinesCommand.cxx" #include "cmWin32LibrariesCommand.cxx" #include "cmConfigureFileNoAutoconf.cxx" +#include "cmFindFileCommand.cxx" +#include "cmWrapTclCommand.cxx" void GetPredefinedCommands(std::list<cmCommand*>& commands) { @@ -48,6 +50,8 @@ void GetPredefinedCommands(std::list<cmCommand*>& commands) commands.push_back(new cmWin32DefinesCommand); commands.push_back(new cmWin32LibrariesCommand); commands.push_back(new cmConfigureFileNoAutoconf); + commands.push_back(new cmFindFileCommand); + commands.push_back(new cmWrapTclCommand); } |