| 721 | } |
| 722 | }; |
| 723 | struct UnitySource |
| 724 | { |
| 725 | std::string Path; |
| 726 | bool PerConfig = false; |
| 727 | UnitySource(std::string path, bool perConfig) |
| 728 | : Path(std::move(path)) |
| 729 | , PerConfig(perConfig) |
| 730 | { |
| 731 | } |
| 732 | }; |
| 733 | /** Whether to insert relative or absolute paths into unity files */ |
| 734 | enum class UnityPathMode |
| 735 | { |
no outgoing calls
no test coverage detected
searching dependent graphs…