Skip to content

Commit

Permalink
detect vs17 toolsset
Browse files Browse the repository at this point in the history
  • Loading branch information
cmb69 committed Jul 16, 2024
1 parent cbc04a3 commit c5b9101
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion scripts/compute-virtuals.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,10 @@ foreach ($ts in (Get-ChildItem $dir)) {
$toolsets."vc14" = $ts
} elseif ((14 -eq $tsv[0]) -and (19 -ge $tsv[1])) {
$toolsets."vc15" = $ts
} elseif (14 -eq $tsv[0]) {
} elseif (14 -eq $tsv[0]) -and (39 -ge $tsv[1])) {
$toolsets."vs16" = $ts
} elseif (14 -eq $tsv[0]) {
$toolsets."vs17" = $ts
}
}
$toolset = $toolsets.$vs
Expand Down

0 comments on commit c5b9101

Please sign in to comment.