(self, target, sources)
| 329 | TARGETS[target], []).append('${' + self._SourceVar(target) + '}') |
| 330 | |
| 331 | def BuildSourcesList(self, target, sources): |
| 332 | sources = self._ExpandSources(target, sources) |
| 333 | return f'set({self._SourceVar(target)} {sources})' |
| 334 | |
| 335 | def BuildAppendSources(self, target, sources): |
| 336 | sources = self._ExpandSources(target, sources) |
no test coverage detected