aboutsummaryrefslogtreecommitdiff
path: root/msvc-15/msvc-15rc2-64
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2017-05-08 12:22:36 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2017-05-08 12:22:36 +0200
commit27850a67cc4c5344d5a8d0d9efb59a1496e7d4dc (patch)
tree3b601b0743cc2b883c757333bbb1b650d0339fa6 /msvc-15/msvc-15rc2-64
parentbf96eebec917c7d56f391f1e72ebefd073dce0b0 (diff)
Drop 15rc* and add 15u0
Diffstat (limited to 'msvc-15/msvc-15rc2-64')
-rwxr-xr-xmsvc-15/msvc-15rc2-6444
1 files changed, 0 insertions, 44 deletions
diff --git a/msvc-15/msvc-15rc2-64 b/msvc-15/msvc-15rc2-64
deleted file mode 100755
index 53c2fd5..0000000
--- a/msvc-15/msvc-15rc2-64
+++ /dev/null
@@ -1,44 +0,0 @@
-#! /usr/bin/env bash
-
-# file : msvc-15/msvc-15rc2-64
-# copyright : Copyright (c) 2014-2017 Code Synthesis Ltd
-# license : MIT; see accompanying LICENSE file
-
-# MSVC 15RC2 64-bit setup/configuration.
-#
-# Should set the SDKBIN, VCBIN, VCDLL, INCLUDE, and LIB variables.
-#
-if [ -z "$MSVC_INSTALLDIR" ]; then
- MSVC_INSTALLDIR="Microsoft Visual Studio 15.0"
-fi
-
-if [ -z "$MSVC_SDKVERSION" ]; then
- source "$src_dir/msvc-common/msvc-sdk-common"
- MSVC_SDKVERSION="$(windows10_sdkversion)"
-fi
-
-# SDK
-#
-SDK="C:\\Program Files (x86)\\Windows Kits\\10"
-SDKBIN="$SDK\\bin\\x64"
-SDKVER="$MSVC_SDKVERSION.0" # Originally "10.0.14393".
-
-INCLUDE="$SDK\\include\\$SDKVER\\shared;$SDK\\include\\$SDKVER\\um;$SDK\\include\\$SDKVER\\winrt"
-LIB="$SDK\\lib\\$SDKVER\\um\\x64"
-
-# CRT
-#
-CRT="C:\\Program Files (x86)\\Windows Kits\\10"
-CRTVER="$MSVC_SDKVERSION.0" # Originally "10.0.14393".
-
-INCLUDE="$CRT\\include\\$CRTVER\\ucrt;$INCLUDE"
-LIB="$CRT\\lib\\$CRTVER\\ucrt\\x64;$LIB"
-
-# VC
-#
-VC="C:\\Program Files (x86)\\$MSVC_INSTALLDIR\\VC\\Tools\\MSVC\\14.10.24728"
-VCBIN="$VC\\bin\\HostX64\\x64"
-VCDLL="$VC\\bin\\HostX64\\x64"
-
-INCLUDE="$VC\\include;$INCLUDE"
-LIB="$VC\\lib\\x64;$LIB"