Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Build Mob

on:
push:
branches: master
branches: [master]
pull_request:
types: [opened, synchronize, reopened]

Expand Down
4 changes: 2 additions & 2 deletions bootstrap.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ if (!$root) {

$output = if ($Verbose) { "Out-Default" } else { "Out-Null" }

cmake -B $root/build -G "Visual Studio 17 2022" $root | & $output
cmake -B $root/build -G "Visual Studio 18 2026" $root | & $output

$installationPath = & $root\third-party\bin\vswhere.exe -products * -nologo -prerelease -latest -property installationPath
if (! $?) {
Expand All @@ -27,7 +27,7 @@ if (! $installationPath) {
}

$opts = ""
$opts += " $root\build\mob.sln"
$opts += " $root\build\mob.slnx"
$opts += " -m"
$opts += " -p:Configuration=${Config}"
$opts += " -noLogo"
Expand Down
Loading