(name)
| 68 | |
| 69 | @cache |
| 70 | def get_include(name): |
| 71 | print(f"Looking for {name} include path:") |
| 72 | if path := get_env(f"{name.upper()}_INCLUDE_PATH"): |
| 73 | return path |
| 74 | if prefix := get_library_prefix(name): |
| 75 | return os.path.join(prefix, "include") |
| 76 | |
| 77 | @cache |
| 78 | def get_lib(name): |
no test coverage detected