| 710 | } |
| 711 | |
| 712 | bool ProjectBuildManager::hasBuildCommands( const std::string& name ) { |
| 713 | auto buildIt = mBuilds.find( name ); |
| 714 | if ( buildIt != mBuilds.end() ) |
| 715 | return buildIt->second.hasBuild(); |
| 716 | return false; |
| 717 | } |
| 718 | |
| 719 | bool ProjectBuildManager::hasCleanCommands( const std::string& name ) { |
| 720 | auto buildIt = mBuilds.find( name ); |