From 0b4393f3eaf2c4a408a7e52266aec3fad074c1bf Mon Sep 17 00:00:00 2001 From: Kai Blaschke Date: Wed, 10 Dec 2025 22:23:48 +0100 Subject: [PATCH] Fix shared lib and boost flags in Windows GHA workflows Before, it was always built with boost and as shared libs. --- .github/workflows/build_windows.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build_windows.yml b/.github/workflows/build_windows.yml index b0682b396..a6557ef48 100644 --- a/.github/workflows/build_windows.yml +++ b/.github/workflows/build_windows.yml @@ -66,12 +66,12 @@ jobs: if("${{ matrix.libs }}" -eq "shared") { $shared_libs = "ON" } else { - $shared_libs = "ON" + $shared_libs = "OFF" } if("${{ matrix.fslib }}" -eq "boost") { $use_boost = "ON" } else { - $use_boost = "ON" + $use_boost = "OFF" } if("${{ matrix.arch }}" -eq "X64") { $triplet = "x64-windows"