Get the meson build directory for the given mode.
(mode: str)
| 49 | |
| 50 | |
| 51 | def get_build_dir(mode: str) -> Path: |
| 52 | """Get the meson build directory for the given mode.""" |
| 53 | return BUILD_DIR_PREFIX / f"meson-wasm-{mode}" |
| 54 | |
| 55 | |
| 56 | def get_sketch_cache_dir(example_name: str) -> Path: |