summaryrefslogtreecommitdiffstats
path: root/Source/cmCommands.cxx
diff options
context:
space:
mode:
authorKen Martin <ken.martin@kitware.com>2001-02-26 22:17:34 (GMT)
committerKen Martin <ken.martin@kitware.com>2001-02-26 22:17:34 (GMT)
commitacbd160dd2731b2a77a8fd6fb444b52e8f0676a0 (patch)
treef93d16f4f3c5a946807374bf4b54e93d4b27f92e /Source/cmCommands.cxx
parent32e738cd0c43d3738d988eee876a68cefc365769 (diff)
downloadCMake-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.cxx4
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);
}