(dir: str, D: List[str] = [])
| 163 | |
| 164 | |
| 165 | def fetch_deps(dir: str, D: List[str] = []) -> None: |
| 166 | dir = os.path.abspath(dir) |
| 167 | with TemporaryDirectory(prefix="kvrocks-fetch-deps-") as build_dir: |
| 168 | build(build_dir, D=D, dep_dir=dir, skip_build=True) |
| 169 | |
| 170 | |
| 171 | def get_source_files(dir: Path) -> List[str]: |