(build_dir)
| 169 | |
| 170 | |
| 171 | def run_ninja(build_dir): |
| 172 | cmd = ['ninja', '-C', build_dir, f'-j{utils.get_num_cores()}'] |
| 173 | if shared.PRINT_SUBPROCS: |
| 174 | cmd.append('-v') |
| 175 | shared.check_call(cmd, env=clean_env()) |
| 176 | |
| 177 | |
| 178 | def ensure_target_in_ninja_file(ninja_file, target): |
no test coverage detected