(self, sources, prop_set, project, name)
| 27 | return result |
| 28 | |
| 29 | def generated_targets (self, sources, prop_set, project, name): |
| 30 | sources2 = [] |
| 31 | libraries = [] |
| 32 | for l in sources: |
| 33 | if type.is_derived (l.type (), 'LIB'): |
| 34 | libraries.append (l) |
| 35 | |
| 36 | else: |
| 37 | sources2.append (l) |
| 38 | |
| 39 | sources = sources2 + order_libraries (libraries) |
| 40 | |
| 41 | return builtin.LinkingGenerator.generated_targets (self, sources, prop_set, project, name) |
| 42 | |
| 43 | |
| 44 | class UnixArchiveGenerator (builtin.ArchiveGenerator): |
nothing calls this directly
no test coverage detected