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 | |
parent | bdb166ce5e752ba6ba8cf20f3869a7a456b567be (diff) |
Add VC 14u2 support
-rwxr-xr-x | cl-14u2 | 6 | ||||
-rwxr-xr-x | lib-14u2 | 6 | ||||
-rwxr-xr-x | link-14u2 | 6 | ||||
-rwxr-xr-x | msvc-14u2 | 26 |
4 files changed, 44 insertions, 0 deletions
@@ -0,0 +1,6 @@ +#! /usr/bin/env bash + +src="$(dirname $(realpath ${BASH_SOURCE[0]}))" + +source "$src/msvc-14u2" +source "$src/msvc-cl-common" diff --git a/lib-14u2 b/lib-14u2 new file mode 100755 index 0000000..2d1c5c3 --- /dev/null +++ b/lib-14u2 @@ -0,0 +1,6 @@ +#! /usr/bin/env bash + +src="$(dirname $(realpath ${BASH_SOURCE[0]}))" + +source "$src/msvc-14u2" +source "$src/msvc-lib-common" diff --git a/link-14u2 b/link-14u2 new file mode 100755 index 0000000..38f8cde --- /dev/null +++ b/link-14u2 @@ -0,0 +1,6 @@ +#! /usr/bin/env bash + +src="$(dirname $(realpath ${BASH_SOURCE[0]}))" + +source "$src/msvc-14u2" +source "$src/msvc-link-common" 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" |