cmSubdirDependsCommand.h 617 B

123456789101112131415161718
  1. /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
  2. file Copyright.txt or https://cmake.org/licensing for details. */
  3. #ifndef cmSubdirDependsCommand_h
  4. #define cmSubdirDependsCommand_h
  5. #include "cmCommand.h"
  6. class cmSubdirDependsCommand : public cmCommand
  7. {
  8. public:
  9. cmCommand* Clone() CM_OVERRIDE { return new cmSubdirDependsCommand; }
  10. bool InitialPass(std::vector<std::string> const& args,
  11. cmExecutionStatus& status) CM_OVERRIDE;
  12. std::string GetName() const CM_OVERRIDE { return "subdir_depends"; }
  13. cmTypeMacro(cmSubdirDependsCommand, cmCommand);
  14. };
  15. #endif