cmGccDepfileReaderTypes.h 427 B

1234567891011121314151617
  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 cmGccDepfileReaderTypes_h
  4. #define cmGccDepfileReaderTypes_h
  5. #include <string>
  6. #include <vector>
  7. struct cmGccStyleDependency
  8. {
  9. std::vector<std::string> rules;
  10. std::vector<std::string> paths;
  11. };
  12. using cmGccDepfileContent = std::vector<cmGccStyleDependency>;
  13. #endif