| 3474 | } |
| 3475 | |
| 3476 | std::string cmGlobalGenerator::GetPredefinedTargetsFolder() const |
| 3477 | { |
| 3478 | cmValue prop = this->GetCMakeInstance()->GetState()->GetGlobalProperty( |
| 3479 | "PREDEFINED_TARGETS_FOLDER"); |
| 3480 | |
| 3481 | if (prop) { |
| 3482 | return *prop; |
| 3483 | } |
| 3484 | |
| 3485 | return "CMakePredefinedTargets"; |
| 3486 | } |
| 3487 | |
| 3488 | bool cmGlobalGenerator::UseFolderProperty() const |
| 3489 | { |
no test coverage detected