| 806 | } |
| 807 | |
| 808 | bool ProjectBuildManager::hasBuildConfigWithBuildSteps() { |
| 809 | if ( hasBuildConfig() ) { |
| 810 | auto build = getCurrentBuild(); |
| 811 | return build != nullptr && build->hasBuild(); |
| 812 | } |
| 813 | return {}; |
| 814 | } |
| 815 | |
| 816 | std::optional<ProjectBuildStep> ProjectBuildManager::getCurrentRunConfig() { |
| 817 | if ( hasBuildConfig() ) { |
no test coverage detected