| 128 | } |
| 129 | |
| 130 | bool HandleAndValidateFileSetTargetScopes(cmExecutionStatus& status, |
| 131 | bool file_set_target_option_enabled, |
| 132 | std::string& file_set_target_name, |
| 133 | cmTarget*& file_set_target) |
| 134 | { |
| 135 | bool scope_options_valid = |
| 136 | SetPropertyCommand::HandleFileSetTargetScopeValidation( |
| 137 | status, file_set_target_option_enabled, file_set_target_name); |
| 138 | if (!scope_options_valid) { |
| 139 | return false; |
| 140 | } |
| 141 | |
| 142 | scope_options_valid = SetPropertyCommand::HandleFileSetTargetScopes( |
| 143 | status, file_set_target_name, file_set_target); |
| 144 | return scope_options_valid; |
| 145 | } |
| 146 | |
| 147 | bool HandleSourceFileDirectoryScopes( |
| 148 | cmExecutionStatus& status, std::vector<std::string>& source_file_directories, |
no test coverage detected
searching dependent graphs…