D | vs_toolchain.py | 199 def _CopyRuntime(target_dir, source_dir, target_cpu, debug): argument 214 if target_cpu == "x86": 218 elif target_cpu == "x64": 224 raise NotImplementedError("Unexpected target_cpu value:" + target_cpu) 249 def CopyDlls(target_dir, configuration, target_cpu): argument 265 runtime_dir = x64_runtime if target_cpu == 'x64' else x86_runtime 266 _CopyRuntime(target_dir, runtime_dir, target_cpu, debug=False) 268 _CopyRuntime(target_dir, runtime_dir, target_cpu, debug=True)
|