diff options
author | Gabor Bencze <b.gabor98@gmail.com> | 2019-08-21 17:56:15 (GMT) |
---|---|---|
committer | Gabor Bencze <b.gabor98@gmail.com> | 2019-08-25 12:29:25 (GMT) |
commit | 9d6fc3f5ed527874d44a111eb80c09e740710e48 (patch) | |
tree | 418c3678bb6364b6441782c03835494a674f4c36 /Source/cmExportLibraryDependenciesCommand.h | |
parent | 524d72151449acf5d76e55172174552b83a74f61 (diff) | |
download | CMake-9d6fc3f5ed527874d44a111eb80c09e740710e48.zip CMake-9d6fc3f5ed527874d44a111eb80c09e740710e48.tar.gz CMake-9d6fc3f5ed527874d44a111eb80c09e740710e48.tar.bz2 |
cmCommand refactor: cmExportLibraryDependenciesCommand
Diffstat (limited to 'Source/cmExportLibraryDependenciesCommand.h')
-rw-r--r-- | Source/cmExportLibraryDependenciesCommand.h | 16 |
1 files changed, 2 insertions, 14 deletions
diff --git a/Source/cmExportLibraryDependenciesCommand.h b/Source/cmExportLibraryDependenciesCommand.h index 4817162..230c906 100644 --- a/Source/cmExportLibraryDependenciesCommand.h +++ b/Source/cmExportLibraryDependenciesCommand.h @@ -8,21 +8,9 @@ #include <string> #include <vector> -#include "cm_memory.hxx" - -#include "cmCommand.h" - class cmExecutionStatus; -class cmExportLibraryDependenciesCommand : public cmCommand -{ -public: - std::unique_ptr<cmCommand> Clone() override - { - return cm::make_unique<cmExportLibraryDependenciesCommand>(); - } - bool InitialPass(std::vector<std::string> const& args, - cmExecutionStatus& status) override; -}; +bool cmExportLibraryDependenciesCommand(std::vector<std::string> const& args, + cmExecutionStatus& status); #endif |