summaryrefslogtreecommitdiffstats
path: root/Source/cmCommands.cxx
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2003-01-21 22:15:22 (GMT)
committerBrad King <brad.king@kitware.com>2003-01-21 22:15:22 (GMT)
commit259a49aaacb9de1a0d19ad6959d09a7000eb9bca (patch)
tree86f57e5b7fc2ec4b77c705fbe9f147bca94141e2 /Source/cmCommands.cxx
parent7418ed1a6796f18c3fab71ec8f60a897f93472ee (diff)
downloadCMake-259a49aaacb9de1a0d19ad6959d09a7000eb9bca.zip
CMake-259a49aaacb9de1a0d19ad6959d09a7000eb9bca.tar.gz
CMake-259a49aaacb9de1a0d19ad6959d09a7000eb9bca.tar.bz2
ENH: Added FIND_PACKAGE command prototyp.
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 f53977c..1cb2994 100644
--- a/Source/cmCommands.cxx
+++ b/Source/cmCommands.cxx
@@ -41,6 +41,7 @@
#include "cmExportLibraryDependencies.cxx"
#include "cmFindFileCommand.cxx"
#include "cmFindLibraryCommand.cxx"
+#include "cmFindPackageCommand.cxx"
#include "cmFindPathCommand.cxx"
#include "cmFindProgramCommand.cxx"
#include "cmForEachCommand.cxx"
@@ -126,6 +127,7 @@ void GetPredefinedCommands(std::list<cmCommand*>& commands)
commands.push_back(new cmExportLibraryDependenciesCommand);
commands.push_back(new cmFindFileCommand);
commands.push_back(new cmFindLibraryCommand);
+ commands.push_back(new cmFindPackageCommand);
commands.push_back(new cmFindPathCommand);
commands.push_back(new cmFindProgramCommand);
commands.push_back(new cmForEachCommand);