Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
martinrotter committed Nov 28, 2023
1 parent 5ae3882 commit 4393a4e
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion resources/scripts/github-actions/build-windows.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,13 @@ $os = $args[0]
$use_webengine = $args[1]
$use_qt5 = $args[2]

$not_use_webengine = "OFF" if use_webengine == "ON" else "ON"

if ($use_webengine -eq "ON") {
$not_use_webengine = "OFF"
}
else {
$not_use_webengine = "ON"
}

echo "We are building for MS Windows."
echo "OS: $os; Not lite: $use_webengine; Qt5: $use_qt5"
Expand Down

0 comments on commit 4393a4e

Please sign in to comment.