diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2016-11-28 13:22:08 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2016-11-28 13:22:08 +0200 |
commit | 6513bb7b269ea8b39dfed0e86a2df9a01ee23416 (patch) | |
tree | 18869207bab0ea24611f179a41f75739598b9109 /msvc-dispatch | |
parent | 0e2b7b99f9cc769cf4b094dca39b5d452f1de32b (diff) |
Add infrastructure for Windows 10 SDK discovery
Diffstat (limited to 'msvc-dispatch')
-rwxr-xr-x | msvc-dispatch | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/msvc-dispatch b/msvc-dispatch index 945710b..4c2bf2d 100755 --- a/msvc-dispatch +++ b/msvc-dispatch @@ -31,7 +31,7 @@ if [ -z "$tool" -o -z "$major" -o -z "$target" ]; then error "invalid top-level script name" fi -# Calculate MSVC_WINEPREFIX and MSVC_INSTALLDIR. +# Calculate MSVC_{WINEPREFIX,INSTALLDIR,SDKVERSION}. # # We have the following environment variable name hierarchy: # @@ -61,6 +61,7 @@ function lookup_value() # <name> MSVC_WINEPREFIX="$(lookup_value "WINEPREFIX")" MSVC_INSTALLDIR="$(lookup_value "INSTALLDIR")" +MSVC_SDKVERSION="$(lookup_value "SDKVERSION")" # Load the configuration. # |