Lines Matching refs:target_dir
285 def _CopyUCRTRuntime(target_dir, source_dir, target_cpu, suffix): argument
308 target = os.path.join(target_dir, dll)
333 _CopyRuntimeImpl(os.path.join(target_dir, 'ucrtbase' + suffix),
367 def _CopyRuntime(target_dir, source_dir, target_cpu, debug): argument
372 _CopyUCRTRuntime(target_dir, source_dir, target_cpu, suffix)
375 def CopyDlls(target_dir, configuration, target_cpu): argument
397 _CopyRuntime(target_dir, runtime_dir, target_cpu, debug=False)
399 _CopyRuntime(target_dir, runtime_dir, target_cpu, debug=True)
400 _CopyDebugger(target_dir, target_cpu)
402 target_dir = os.path.join(target_dir, 'win_clang_x64')
405 os.makedirs(target_dir, exist_ok=True)
406 _CopyRuntime(target_dir, runtime_dir, target_cpu, debug=False)
408 _CopyRuntime(target_dir, runtime_dir, target_cpu, debug=True)
409 _CopyDebugger(target_dir, target_cpu)
412 def _CopyDebugger(target_dir, target_cpu): argument
446 target_path = os.path.join(target_dir, debug_file)
453 _CopyRuntimeImpl(os.path.join(target_dir, 'msdia140.dll'), dia_path)