()
| 13 | |
| 14 | |
| 15 | def main(): |
| 16 | root = sys.argv[1] |
| 17 | outdir = sys.argv[2] |
| 18 | api = sys.argv[3] |
| 19 | module = sys.argv[4] |
| 20 | |
| 21 | template = os.path.join(BASE, "configure.h.mako") |
| 22 | content = render(template, api=api.upper(), module=module) |
| 23 | output = os.path.join(outdir, "module.configure.h") |
| 24 | write(output, content) |
| 25 | |
| 26 | |
| 27 | def GetInclude(path): |
no test coverage detected