aboutsummaryrefslogtreecommitdiff
path: root/cl-14
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2016-05-02 18:00:06 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2016-05-02 18:00:06 +0200
commit34985ea6f26f6f0a383532ad804e44527715c3fe (patch)
treebd8234f00868e5d57364b3f4d5ec3416a0ed392d /cl-14
Initial driver wrappers for VC 11, 12, and 14
Diffstat (limited to 'cl-14')
-rwxr-xr-xcl-1430
1 files changed, 30 insertions, 0 deletions
diff --git a/cl-14 b/cl-14
new file mode 100755
index 0000000..43175d1
--- /dev/null
+++ b/cl-14
@@ -0,0 +1,30 @@
+#!/bin/sh
+
+# SDK
+#
+SDK="C:\Program Files (x86)\Windows Kits\8.1"
+
+INCLUDE="$SDK\include\shared;$SDK\include\um;$SDK\include\winrt"
+LIB="$SDK\lib\winv6.3\um\x86"
+
+# CRT
+#
+CRT="C:\Program Files (x86)\Windows Kits\10"
+VER="10.0.10150.0"
+
+INCLUDE="$CRT\include\\$VER\ucrt;$INCLUDE"
+LIB="$CRT\lib\\$VER\ucrt\x86;$LIB"
+
+# VC
+#
+VC="C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC"
+
+INCLUDE="$VC\include;$INCLUDE"
+LIB="$VC\lib;$LIB"
+
+export INCLUDE
+export LIB
+
+export WINEDEBUG=fixme-all
+
+exec wine "$VC\bin\cl.exe" $*