| 224 | } |
| 225 | |
| 226 | bool HandleAndValidateSourceFileDirectoryScopes( |
| 227 | cmExecutionStatus& status, bool source_file_directory_option_enabled, |
| 228 | bool source_file_target_option_enabled, |
| 229 | std::vector<std::string>& source_file_directories, |
| 230 | std::vector<std::string>& source_file_target_directories, |
| 231 | std::vector<cmMakefile*>& source_file_directory_makefiles) |
| 232 | { |
| 233 | bool scope_options_valid = |
| 234 | SetPropertyCommand::HandleSourceFileDirectoryScopeValidation( |
| 235 | status, source_file_directory_option_enabled, |
| 236 | source_file_target_option_enabled, source_file_directories, |
| 237 | source_file_target_directories); |
| 238 | if (!scope_options_valid) { |
| 239 | return false; |
| 240 | } |
| 241 | |
| 242 | scope_options_valid = SetPropertyCommand::HandleSourceFileDirectoryScopes( |
| 243 | status, source_file_directories, source_file_target_directories, |
| 244 | source_file_directory_makefiles); |
| 245 | return scope_options_valid; |
| 246 | } |
| 247 | |
| 248 | bool HandleTestDirectoryScopes(cmExecutionStatus& status, |
| 249 | std::string& test_directory, |
no test coverage detected
searching dependent graphs…