Skip to content

Commit 0b4393f

Browse files
committed
Fix shared lib and boost flags in Windows GHA workflows
Before, it was always built with boost and as shared libs.
1 parent 7c2b14e commit 0b4393f

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/build_windows.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,12 +66,12 @@ jobs:
6666
if("${{ matrix.libs }}" -eq "shared") {
6767
$shared_libs = "ON"
6868
} else {
69-
$shared_libs = "ON"
69+
$shared_libs = "OFF"
7070
}
7171
if("${{ matrix.fslib }}" -eq "boost") {
7272
$use_boost = "ON"
7373
} else {
74-
$use_boost = "ON"
74+
$use_boost = "OFF"
7575
}
7676
if("${{ matrix.arch }}" -eq "X64") {
7777
$triplet = "x64-windows"

0 commit comments

Comments
 (0)