| 3172 | } |
| 3173 | |
| 3174 | char const* unity_file_prefix(cmGeneratorTarget* target) |
| 3175 | { |
| 3176 | if (cmValue val = target->GetProperty("UNITY_BUILD_FILENAME_PREFIX")) { |
| 3177 | return val->c_str(); |
| 3178 | } |
| 3179 | return "unity_"; |
| 3180 | } |
| 3181 | } |
| 3182 | |
| 3183 | std::vector<cmLocalGenerator::UnitySource> |
no test coverage detected
searching dependent graphs…