diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2016-07-11 07:26:39 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2016-07-11 07:26:39 +0200 |
commit | 634991096d72e1a6ccfd25574d2a9e90fed120f9 (patch) | |
tree | 0f1b5e96d0711bc13fe9a3b320abbf11b1f25fe3 /msvc-14 | |
parent | 3775f6aa680849c1bb7a5f8760a8f84203b615c8 (diff) |
Add support for rc.exe
Diffstat (limited to 'msvc-14')
-rwxr-xr-x | msvc-14 | 12 |
1 files changed, 8 insertions, 4 deletions
@@ -1,11 +1,14 @@ #! /usr/bin/env bash -# MSVC 14 setup/configuration. Should set VC, INCLUDE, and LIB variables. +# MSVC 14 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,14 +16,15 @@ LIB="$SDK\\lib\\winv6.3\\um\\x86" # CRT # CRT="C:\\Program Files (x86)\\Windows Kits\\10" -VER="10.0.10150.0" +CRTVER="10.0.10150.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" |