diff options
author | Karen Arutyunov <karen@codesynthesis.com> | 2019-03-13 00:53:19 +0300 |
---|---|---|
committer | Karen Arutyunov <karen@codesynthesis.com> | 2019-03-25 16:21:26 +0300 |
commit | ba83f41d5d899e2e6f3e521b5b489123aa24b720 (patch) | |
tree | fa92b790fdb85b90431c492fc536da823f6cb6b5 /msvc-15/msvc-15u5-64 | |
parent | bea2cd6f5817e41f3ddb7d1a795648e52f9b7d05 (diff) |
Add support for 16.0
Diffstat (limited to 'msvc-15/msvc-15u5-64')
-rwxr-xr-x | msvc-15/msvc-15u5-64 | 45 |
1 files changed, 0 insertions, 45 deletions
diff --git a/msvc-15/msvc-15u5-64 b/msvc-15/msvc-15u5-64 deleted file mode 100755 index dbcbcb8..0000000 --- a/msvc-15/msvc-15u5-64 +++ /dev/null @@ -1,45 +0,0 @@ -#! /usr/bin/env bash - -# file : msvc-15/msvc-15u5-64 -# copyright : Copyright (c) 2014-2019 Code Synthesis Ltd -# license : MIT; see accompanying LICENSE file - -# MSVC 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" - -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" - -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.12.25827" -VCBIN="$VC\\bin\\Hostx64\\x64" -VCDLL="$VC\\bin\\Hostx64\\x64" - -INCLUDE="$VC\\include;$INCLUDE" -IFCPATH="$VC\\ifc\\x64" -LIB="$VC\\lib\\x64;$LIB" |