From c8428cb3e456e42cbe875baf6a2b39be41fe0ff3 Mon Sep 17 00:00:00 2001 From: abv Date: Wed, 4 Sep 2019 09:35:15 +0300 Subject: [PATCH] 0030938: Configuration, genproj - Support building with VS 2019 Commands genproj and genconf are updated to support generation of projects for VS 2019, toolset v142 --- adm/genconf.tcl | 12 +++++++++++- adm/genproj.tcl | 11 ++++++++--- 2 files changed, 19 insertions(+), 4 deletions(-) diff --git a/adm/genconf.tcl b/adm/genconf.tcl index 619e78cb65..244647f0e9 100644 --- a/adm/genconf.tcl +++ b/adm/genconf.tcl @@ -58,7 +58,7 @@ set SYS_VS_LIST {} set SYS_VC_LIST {} set SYS_VCVARS_LIST {} -# detect installed Visual Studio 2017 instances by running vswhere.exe +# detect installed Visual Studio 2017+ instances by running vswhere.exe if { ! [catch {exec vswhere.exe -version "\[15.0,15.99\]" -latest -requires Microsoft.VisualStudio.Workload.NativeDesktop -property installationPath} res] } { lappend ::SYS_VS_LIST "Visual Studio 2017 (15, toolset v141)" lappend ::SYS_VC_LIST "vc141" @@ -69,6 +69,16 @@ if { ! [catch {exec vswhere.exe -version "\[15.0,15.99\]" -latest -requires Micr lappend ::SYS_VC_LIST "vc141-uwp" lappend ::SYS_VCVARS_LIST "$res\\VC\\vcvarsall.bat" } +if { ! [catch {exec vswhere.exe -version "\[16.0,16.99\]" -latest -requires Microsoft.VisualStudio.Workload.NativeDesktop -property installationPath} res] } { + lappend ::SYS_VS_LIST "Visual Studio 2019 (16, toolset v142)" + lappend ::SYS_VC_LIST "vc142" + lappend ::SYS_VCVARS_LIST "$res\\VC\\vcvarsall.bat" +} +if { ! [catch {exec vswhere.exe -version "\[16.0,16.99\]" -latest -requires Microsoft.VisualStudio.Workload.Universal -property installationPath} res] } { + lappend ::SYS_VS_LIST "Visual Studio 2019 (16, toolset v142) UWP" + lappend ::SYS_VC_LIST "vc142-uwp" + lappend ::SYS_VCVARS_LIST "$res\\VC\\vcvarsall.bat" +} # detect installed Visual Studio instances from global environment if { [info exists ::env(VS140COMNTOOLS)] } { diff --git a/adm/genproj.tcl b/adm/genproj.tcl index 51af053c0c..f2ce1b1b64 100644 --- a/adm/genproj.tcl +++ b/adm/genproj.tcl @@ -256,7 +256,7 @@ proc genAllResources {} { # Wrapper-function to generate VS project files proc genproj {theFormat args} { - set aSupportedFormats { "vc7" "vc8" "vc9" "vc10" "vc11" "vc12" "vc14" "vc141" "cbp" "xcd" "pro"} + set aSupportedFormats { "vc7" "vc8" "vc9" "vc10" "vc11" "vc12" "vc14" "vc141" "vc142" "cbp" "xcd" "pro"} set aSupportedPlatforms { "wnt" "uwp" "lin" "mac" "ios" "qnx" } set isHelpRequire false @@ -312,6 +312,7 @@ proc genproj {theFormat args} { vc12 - Visual Studio 2013 vc14 - Visual Studio 2015 vc141 - Visual Studio 2017 + vc142 - Visual Studio 2019 cbp - CodeBlocks xcd - XCode pro - Qt Creator @@ -510,7 +511,8 @@ proc OS:MKPRC { theOutDir theFormat theLibType thePlatform theCmpl } { "vc11" - "vc12" - "vc14" - - "vc141" { OS:MKVC $anOutDir $aModules $anAllSolution $theFormat $isUWP} + "vc141" - + "vc142" { OS:MKVC $anOutDir $aModules $anAllSolution $theFormat $isUWP} "cbp" { OS:MKCBP $anOutDir $aModules $anAllSolution $thePlatform $theCmpl } "xcd" { set ::THE_GUIDS_LIST($::aTKNullKey) "000000000000000000000000" @@ -965,7 +967,7 @@ proc osutils:vcsolution:header { vcversion } { append var \ "Microsoft Visual Studio Solution File, Format Version 12.00\n" \ "# Visual Studio 2013\n" - } elseif { "$vcversion" == "vc14" || "$vcversion" == "vc141"} { + } elseif { "$vcversion" == "vc14" || "$vcversion" == "vc141" || "$vcversion" == "vc142" } { append var \ "Microsoft Visual Studio Solution File, Format Version 12.00\n" \ "# Visual Studio 14\n" @@ -1203,6 +1205,9 @@ proc osutils:vcproj:readtemplate {theVcVer isUWP isExec} { if { $theVcVer == "vc141" } { set aVCRTVer "vc14" set aToolset "v141" + } elseif { $theVcVer == "vc142" } { + set aVCRTVer "vc14" + set aToolset "v142" } set what "$theVcVer"