diff options
author | Gabor Bencze <b.gabor98@gmail.com> | 2019-08-21 18:50:44 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2019-08-26 15:48:46 (GMT) |
commit | c8deeac68f1462461a464acd6d2c2728b9a293c2 (patch) | |
tree | 510248aabe3ec3db117e2cc0d508d91dbb088f64 /Source/cmSubdirDependsCommand.h | |
parent | c2c222eba13476a95a362731528d85a3e76ed83a (diff) | |
download | CMake-c8deeac68f1462461a464acd6d2c2728b9a293c2.zip CMake-c8deeac68f1462461a464acd6d2c2728b9a293c2.tar.gz CMake-c8deeac68f1462461a464acd6d2c2728b9a293c2.tar.bz2 |
cmCommand refactor: cmSubdirDependsCommand
Diffstat (limited to 'Source/cmSubdirDependsCommand.h')
-rw-r--r-- | Source/cmSubdirDependsCommand.h | 16 |
1 files changed, 2 insertions, 14 deletions
diff --git a/Source/cmSubdirDependsCommand.h b/Source/cmSubdirDependsCommand.h index 64c28b9..bf99bd1 100644 --- a/Source/cmSubdirDependsCommand.h +++ b/Source/cmSubdirDependsCommand.h @@ -8,21 +8,9 @@ #include <string> #include <vector> -#include "cm_memory.hxx" - -#include "cmCommand.h" - class cmExecutionStatus; -class cmSubdirDependsCommand : public cmCommand -{ -public: - std::unique_ptr<cmCommand> Clone() override - { - return cm::make_unique<cmSubdirDependsCommand>(); - } - bool InitialPass(std::vector<std::string> const& args, - cmExecutionStatus& status) override; -}; +bool cmSubdirDependsCommand(std::vector<std::string> const& args, + cmExecutionStatus& status); #endif |