From 18d2d38ba4c03d48a772174f3de856d81ff39a4f Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Mon, 6 Jun 2016 18:17:33 +0200 Subject: Major redesign of wrappers --- msvc-11 | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100755 msvc-11 (limited to 'msvc-11') diff --git a/msvc-11 b/msvc-11 new file mode 100755 index 0000000..d1ccc99 --- /dev/null +++ b/msvc-11 @@ -0,0 +1,18 @@ +#! /usr/bin/env bash + +# MSVC 11 setup/configuration. Should set VC, INCLUDE, and LIB variables. +# + +# SDK +# +SDK="C:\\Program Files (x86)\\Windows Kits\\8.0" + +INCLUDE="$SDK\\include\\shared;$SDK\\include\\um;$SDK\\include\\winrt" +LIB="$SDK\\lib\\win8\\um\\x86" + +# VC +# +VC="C:\\Program Files (x86)\\Microsoft Visual Studio 11.0\\VC" + +INCLUDE="$VC\\include;$INCLUDE" +LIB="$VC\\lib;$LIB" -- cgit v1.1