cmSubdirDependsCommand.h 730 B

12345678910111213141516171819202122232425
  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 <cmConfigure.h>
  6. #include <string>
  7. #include <vector>
  8. #include "cmCommand.h"
  9. #include "cmTypeMacro.h"
  10. class cmExecutionStatus;
  11. class cmSubdirDependsCommand : public cmCommand
  12. {
  13. public:
  14. cmCommand* Clone() CM_OVERRIDE { return new cmSubdirDependsCommand; }
  15. bool InitialPass(std::vector<std::string> const& args,
  16. cmExecutionStatus& status) CM_OVERRIDE;
  17. std::string GetName() const CM_OVERRIDE { return "subdir_depends"; }
  18. cmTypeMacro(cmSubdirDependsCommand, cmCommand);
  19. };
  20. #endif