From 842df807e704d07410fbff166e957478154ef3e6 Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Wed, 5 Oct 2016 16:53:02 +0200 Subject: Add VC14u2 64-bit config, minor doc updates --- msvc-14u2-64 | 32 ++++++++++++++++++++++++++++++++ 1 file changed, 32 insertions(+) create mode 100755 msvc-14u2-64 (limited to 'msvc-14u2-64') diff --git a/msvc-14u2-64 b/msvc-14u2-64 new file mode 100755 index 0000000..20b3405 --- /dev/null +++ b/msvc-14u2-64 @@ -0,0 +1,32 @@ +#! /usr/bin/env bash + +# MSVC 14U2 64-bit setup/configuration. +# +# Should set the SDKBIN, VCBIN, VCDLL, INCLUDE, and LIB variables. +# + +# SDK +# +SDK="C:\\Program Files (x86)\\Windows Kits\\10" +SDKBIN="$SDK\\bin\\x64" +SDKVER="10.0.10586.0" + +INCLUDE="$SDK\\include\\$SDKVER\\shared;$SDK\\include\\$SDKVER\\um;$SDK\\include\\$SDKVER\\winrt" +LIB="$SDK\\lib\\$SDKVER\\um\\x64" + +# CRT +# +CRT="C:\\Program Files (x86)\\Windows Kits\\10" +CRTVER="10.0.10586.0" + +INCLUDE="$CRT\\include\\$CRTVER\\ucrt;$INCLUDE" +LIB="$CRT\\lib\\$CRTVER\\ucrt\\x64;$LIB" + +# VC +# +VC="C:\\Program Files (x86)\\Microsoft Visual Studio 14.0\\VC" +VCBIN="$VC\\bin\\amd64" +VCDLL="$VC\\bin\\amd64" + +INCLUDE="$VC\\include;$INCLUDE" +LIB="$VC\\lib\\amd64;$LIB" -- cgit v1.1