diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2016-06-11 18:54:20 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2016-06-11 18:54:20 +0200 |
commit | c4a5f7b5d2ce3591b8babc8350fee8f9ef020510 (patch) | |
tree | d9315e476a1745dd2844df5bcac79d1f4687cd65 /msvc-14u2 | |
parent | bdb166ce5e752ba6ba8cf20f3869a7a456b567be (diff) |
Add VC 14u2 support
Diffstat (limited to 'msvc-14u2')
-rwxr-xr-x | msvc-14u2 | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/msvc-14u2 b/msvc-14u2 new file mode 100755 index 0000000..1a4524f --- /dev/null +++ b/msvc-14u2 @@ -0,0 +1,26 @@ +#! /usr/bin/env bash + +# MSVC 14U2 setup/configuration. Should set VC, INCLUDE, and LIB variables. +# + +# SDK +# +SDK="C:\\Program Files (x86)\\Windows Kits\\10" +VER="10.0.10586.0" + +INCLUDE="$SDK\\include\\$VER\\shared;$SDK\\include\\$VER\\um;$SDK\\include\\$VER\\winrt" +LIB="$SDK\\lib\\$VER\\um\\x86" + +# CRT +# +CRT="C:\\Program Files (x86)\\Windows Kits\\10" + +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" |