CMake Nightly Date Stamp
[kiteware-cmake.git] / Source / cmGccDepfileReaderTypes.h
blob246e3556dafd06382ab0511fa4b53e737150e5a4
1 /* Distributed under the OSI-approved BSD 3-Clause License. See accompanying
2 file Copyright.txt or https://cmake.org/licensing for details. */
3 #pragma once
5 #include <string>
6 #include <vector>
8 struct cmGccStyleDependency
10 std::vector<std::string> rules;
11 std::vector<std::string> paths;
14 using cmGccDepfileContent = std::vector<cmGccStyleDependency>;