summaryrefslogtreecommitdiffstats
path: root/Source/cmCommands.cxx
diff options
context:
space:
mode:
authorAndy Cedilnik <andy.cedilnik@kitware.com>2003-07-07 21:47:17 (GMT)
committerAndy Cedilnik <andy.cedilnik@kitware.com>2003-07-07 21:47:17 (GMT)
commit372d2cbea997fa9f1d09f424fc56e1c97735a69b (patch)
tree06933ee3868591e2a8e8803b0ba4e24341c78d0c /Source/cmCommands.cxx
parent197368d9e7890cf4bcb36d40cb15413a8209aaca (diff)
downloadCMake-372d2cbea997fa9f1d09f424fc56e1c97735a69b.zip
CMake-372d2cbea997fa9f1d09f424fc56e1c97735a69b.tar.gz
CMake-372d2cbea997fa9f1d09f424fc56e1c97735a69b.tar.bz2
ENH: Start working on a general file manipulation command
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 1219394..e393413 100644
--- a/Source/cmCommands.cxx
+++ b/Source/cmCommands.cxx
@@ -34,6 +34,7 @@
#include "cmEndForEachCommand.cxx"
#include "cmEndIfCommand.cxx"
#include "cmExecProgramCommand.cxx"
+#include "cmFileCommand.cxx"
#include "cmFindFileCommand.cxx"
#include "cmFindLibraryCommand.cxx"
#include "cmFindPackageCommand.cxx"
@@ -125,6 +126,7 @@ void GetPredefinedCommands(std::list<cmCommand*>& commands)
commands.push_back(new cmEndForEachCommand);
commands.push_back(new cmEndIfCommand);
commands.push_back(new cmExecProgramCommand);
+ commands.push_back(new cmFileCommand);
commands.push_back(new cmFindFileCommand);
commands.push_back(new cmFindLibraryCommand);
commands.push_back(new cmFindPackageCommand);