aboutsummaryrefslogtreecommitdiff
path: root/msvc-14u2
blob: 0f6d1f7ffaed6120fe3094885a97962702f5a7f4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
#! /usr/bin/env bash

# MSVC 14U2 setup/configuration.
#
# Should set the SDKBIN, VCBIN, INCLUDE, and LIB variables.
#

# SDK
#
SDK="C:\\Program Files (x86)\\Windows Kits\\10"
SDKBIN="$SDK\\bin\\x86"
SDKVER="10.0.10586.0"

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\\$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"