From 34985ea6f26f6f0a383532ad804e44527715c3fe Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Mon, 2 May 2016 18:00:06 +0200 Subject: Initial driver wrappers for VC 11, 12, and 14 --- cl-12 | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100755 cl-12 (limited to 'cl-12') diff --git a/cl-12 b/cl-12 new file mode 100755 index 0000000..8bda7ff --- /dev/null +++ b/cl-12 @@ -0,0 +1,20 @@ +#! /usr/bin/env bash + +trap 'exit 1' ERR + +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" + +VC="C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC" + +INCLUDE="$VC\include;$INCLUDE" +LIB="$VC\lib;$LIB" + +export INCLUDE +export LIB + +export WINEDEBUG=fixme-all + +wine "$VC\bin\cl.exe" $* -- cgit v1.1