From 634991096d72e1a6ccfd25574d2a9e90fed120f9 Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Mon, 11 Jul 2016 07:26:39 +0200 Subject: Add support for rc.exe --- msvc-14u2 | 17 +++++++++++------ 1 file changed, 11 insertions(+), 6 deletions(-) (limited to 'msvc-14u2') diff --git a/msvc-14u2 b/msvc-14u2 index 1a4524f..0f6d1f7 100755 --- a/msvc-14u2 +++ b/msvc-14u2 @@ -1,26 +1,31 @@ #! /usr/bin/env bash -# MSVC 14U2 setup/configuration. Should set VC, INCLUDE, and LIB variables. +# MSVC 14U2 setup/configuration. +# +# Should set the SDKBIN, VCBIN, INCLUDE, and LIB variables. # # SDK # SDK="C:\\Program Files (x86)\\Windows Kits\\10" -VER="10.0.10586.0" +SDKBIN="$SDK\\bin\\x86" +SDKVER="10.0.10586.0" -INCLUDE="$SDK\\include\\$VER\\shared;$SDK\\include\\$VER\\um;$SDK\\include\\$VER\\winrt" -LIB="$SDK\\lib\\$VER\\um\\x86" +INCLUDE="$SDK\\include\\$SDKVER\\shared;$SDK\\include\\$SDKVER\\um;$SDK\\include\\$SDKVER\\winrt" +LIB="$SDK\\lib\\$SDKVER\\um\\x86" # CRT # CRT="C:\\Program Files (x86)\\Windows Kits\\10" +CRTVER="10.0.10586.0" -INCLUDE="$CRT\\include\\$VER\\ucrt;$INCLUDE" -LIB="$CRT\\lib\\$VER\\ucrt\\x86;$LIB" +INCLUDE="$CRT\\include\\$CRTVER\\ucrt;$INCLUDE" +LIB="$CRT\\lib\\$CRTVER\\ucrt\\x86;$LIB" # VC # VC="C:\\Program Files (x86)\\Microsoft Visual Studio 14.0\\VC" +VCBIN="$VC\\bin" INCLUDE="$VC\\include;$INCLUDE" LIB="$VC\\lib;$LIB" -- cgit v1.1