summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEike Ziller <eike.ziller@theqtcompany.com>2015-10-14 17:46:28 +0200
committerEike Ziller <eike.ziller@theqtcompany.com>2015-10-14 15:47:21 +0000
commit7c2761f1f014c43ad8105fc381690a65b213dcd8 (patch)
treee6130072d60000952c714e9687e2375cfbb162f0
parent63d543055e3ea06e3f786b0edda5f3e5711b8371 (diff)
downloadqt-creator-7c2761f1f014c43ad8105fc381690a65b213dcd8.tar.gz
Windows: Also deploy clang.exe
We need both clang.exe and clang-cl.exe for mingw and msvc Change-Id: I2f8883f2ac42636699d4326d4d5f044b34b7d9ba Reviewed-by: Eike Ziller <eike.ziller@theqtcompany.com>
-rwxr-xr-xscripts/deployqt.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/scripts/deployqt.py b/scripts/deployqt.py
index e7e3319dae..9b3b0018b8 100755
--- a/scripts/deployqt.py
+++ b/scripts/deployqt.py
@@ -237,6 +237,8 @@ def copy_libclang(install_dir, llvm_install_dir):
if sys.platform.startswith("win"):
deployinfo.append((os.path.join(llvm_install_dir, 'bin', 'libclang.dll'),
os.path.join(install_dir, 'bin')))
+ deployinfo.append((os.path.join(llvm_install_dir, 'bin', 'clang.exe'),
+ os.path.join(install_dir, 'bin')))
deployinfo.append((os.path.join(llvm_install_dir, 'bin', 'clang-cl.exe'),
os.path.join(install_dir, 'bin')))
else: