(target_path, driver_name)
| 89 | f.write(content) |
| 90 | |
| 91 | def add_driver(target_path, driver_name): |
| 92 | mappings = get_driver_mappings(driver_name) |
| 93 | map_copy(mappings, target_path) |
| 94 | cmakelists_content = create_module_cmakelists(driver_name) |
| 95 | write_module_cmakelists(os.path.join(target_path, f"Drivers/{driver_name}/CMakeLists.txt"), cmakelists_content) |
| 96 | |
| 97 | def add_module(target_path, module_name): |
| 98 | mappings = get_module_mappings(module_name) |
no test coverage detected