| 3358 | } |
| 3359 | |
| 3360 | bool cmGeneratorTarget::IsSourceFilePartOfUnityBatch( |
| 3361 | std::string const& sourceFilename) const |
| 3362 | { |
| 3363 | if (!this->GetPropertyAsBool("UNITY_BUILD")) { |
| 3364 | return false; |
| 3365 | } |
| 3366 | |
| 3367 | return this->UnityBatchedSourceFiles.find(sourceFilename) != |
| 3368 | this->UnityBatchedSourceFiles.end(); |
| 3369 | } |
| 3370 | |
| 3371 | void cmGeneratorTarget::ComputeTargetManifest(std::string const& config) const |
| 3372 | { |
no test coverage detected