| 968 | |
| 969 | namespace { |
| 970 | struct file_not_persistent |
| 971 | { |
| 972 | bool operator()(std::string const& path) const |
| 973 | { |
| 974 | return !(path.find("CMakeTmp") == std::string::npos && |
| 975 | cmSystemTools::FileExists(path)); |
| 976 | } |
| 977 | }; |
| 978 | } |
| 979 | |
| 980 | void cmMakefile::AddGeneratorAction(GeneratorAction&& action) |
no outgoing calls
no test coverage detected
searching dependent graphs…