Check if group has local options.
(self)
| 82 | return self.objects |
| 83 | |
| 84 | def _has_local_options(self) -> bool: |
| 85 | """Check if group has local options.""" |
| 86 | return bool( |
| 87 | self.local_cflags or |
| 88 | self.local_cxxflags or |
| 89 | self.local_include_paths or |
| 90 | self.local_defines |
| 91 | ) |
| 92 | |
| 93 | def _apply_local_options(self, env) -> None: |
| 94 | """Apply local options to environment.""" |