diff options
author | Ken Martin <ken.martin@kitware.com> | 2001-04-26 13:38:31 (GMT) |
---|---|---|
committer | Ken Martin <ken.martin@kitware.com> | 2001-04-26 13:38:31 (GMT) |
commit | 30ad61805bbb5b34e2bf17cb36ce2e9601ed0f25 (patch) | |
tree | 5b3fcc1f4f7c87868910d1714f9d08ede81afbd0 /Source/cmCommands.cxx | |
parent | ab7f884a444d929c5598a8384526e5f4044bc515 (diff) | |
download | CMake-30ad61805bbb5b34e2bf17cb36ce2e9601ed0f25.zip CMake-30ad61805bbb5b34e2bf17cb36ce2e9601ed0f25.tar.gz CMake-30ad61805bbb5b34e2bf17cb36ce2e9601ed0f25.tar.bz2 |
bug fixes
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 c9cf0fb..71d2ae5 100644 --- a/Source/cmCommands.cxx +++ b/Source/cmCommands.cxx @@ -37,6 +37,7 @@ #include "cmCableInstantiateCommand.cxx" #include "cmCableInstantiateClassCommand.cxx" #include "cmFindFileCommand.cxx" +#include "cmFindPathCommand.cxx" #include "cmWrapExcludeFilesCommand.cxx" #include "cmVTKWrapPythonCommand.cxx" #include "cmVTKWrapTclCommand.cxx" @@ -83,6 +84,7 @@ void GetPredefinedCommands(std::list<cmCommand*>& commands) commands.push_back(new cmCableInstantiateCommand); commands.push_back(new cmCableInstantiateClassCommand); commands.push_back(new cmFindFileCommand); + commands.push_back(new cmFindPathCommand); commands.push_back(new cmWrapExcludeFilesCommand); commands.push_back(new cmVTKWrapPythonCommand); commands.push_back(new cmVTKWrapTclCommand); |