diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2003-01-20 21:59:02 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2003-01-20 21:59:02 (GMT) |
commit | c4fa5d1fdf8a8bdc03872f148b29432e8f55ae9a (patch) | |
tree | ad9ce56528b85193ae6f75a51b1418498e0c59b3 /Source/cmCommands.cxx | |
parent | ece369eaf3bb463a4a9675f1aed69199ce8b3832 (diff) | |
download | CMake-c4fa5d1fdf8a8bdc03872f148b29432e8f55ae9a.zip CMake-c4fa5d1fdf8a8bdc03872f148b29432e8f55ae9a.tar.gz CMake-c4fa5d1fdf8a8bdc03872f148b29432e8f55ae9a.tar.bz2 |
ENH: add a new command that allows exports of library dependencies from a project to a file
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 a60ff9f..f53977c 100644 --- a/Source/cmCommands.cxx +++ b/Source/cmCommands.cxx @@ -38,6 +38,7 @@ #include "cmEndForEachCommand.cxx" #include "cmEndIfCommand.cxx" #include "cmExecProgramCommand.cxx" +#include "cmExportLibraryDependencies.cxx" #include "cmFindFileCommand.cxx" #include "cmFindLibraryCommand.cxx" #include "cmFindPathCommand.cxx" @@ -122,6 +123,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 cmExportLibraryDependenciesCommand); commands.push_back(new cmFindFileCommand); commands.push_back(new cmFindLibraryCommand); commands.push_back(new cmFindPathCommand); |