cmNinjaTypes.h 565 B

1234567891011121314151617181920212223
  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 cmNinjaTypes_h
  4. #define cmNinjaTypes_h
  5. #include "cmConfigure.h" // IWYU pragma: keep
  6. #include <map>
  7. #include <set>
  8. #include <string>
  9. #include <vector>
  10. enum cmNinjaTargetDepends
  11. {
  12. DependOnTargetArtifact,
  13. DependOnTargetOrdering
  14. };
  15. typedef std::vector<std::string> cmNinjaDeps;
  16. typedef std::set<std::string> cmNinjaOuts;
  17. typedef std::map<std::string, std::string> cmNinjaVars;
  18. #endif // ! cmNinjaTypes_h