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-14 | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100755 msvc-14 (limited to 'msvc-14') diff --git a/msvc-14 b/msvc-14 new file mode 100755 index 0000000..31242c6 --- /dev/null +++ b/msvc-14 @@ -0,0 +1,26 @@ +#! /usr/bin/env bash + +# MSVC 14 setup/configuration. Should set VC, INCLUDE, and LIB variables. +# + +# 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" -- cgit v1.1