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-12 | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'msvc-12') diff --git a/msvc-12 b/msvc-12 index 2674215..e124a1b 100755 --- a/msvc-12 +++ b/msvc-12 @@ -1,11 +1,14 @@ #! /usr/bin/env bash -# MSVC 12 setup/configuration. Should set VC, INCLUDE, and LIB variables. +# MSVC 12 setup/configuration. +# +# Should set the SDKBIN, VCBIN, INCLUDE, and LIB variables. # # SDK # SDK="C:\\Program Files (x86)\\Windows Kits\\8.1" +SDKBIN="$SDK\\bin\\x86" INCLUDE="$SDK\\include\\shared;$SDK\\include\\um;$SDK\\include\\winrt" LIB="$SDK\\lib\\winv6.3\\um\\x86" @@ -13,6 +16,7 @@ LIB="$SDK\\lib\\winv6.3\\um\\x86" # VC # VC="C:\\Program Files (x86)\\Microsoft Visual Studio 12.0\\VC" +VCBIN="$VC\\bin" INCLUDE="$VC\\include;$INCLUDE" LIB="$VC\\lib;$LIB" -- cgit v1.1