(self)
| 175 | shutil.copy(source, target) |
| 176 | |
| 177 | def get_source_files(self): |
| 178 | self.check_library_list(self.libraries) |
| 179 | filenames = [] |
| 180 | for lib in self.libraries: |
| 181 | filenames.extend(get_lib_source_files(lib)) |
| 182 | return filenames |
| 183 | |
| 184 | def build_libraries(self, libraries): |
| 185 | for (lib_name, build_info) in libraries: |
nothing calls this directly
no test coverage detected