From 3680d99cb4a2a20c78a0e20b276440b473c22133 Mon Sep 17 00:00:00 2001 From: Will Date: Sat, 26 Oct 2024 12:13:49 -0400 Subject: [PATCH] ci/windows: be explicit about cmake options --- .github/workflows/windows.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index 32c81c7d..74ce222e 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -48,7 +48,7 @@ jobs: bash -c 'ls -hal tiny.exe' - shell: bash run: | - cmake -S . -B out/${{matrix.target-platform}} + cmake -S . -B out/${{matrix.target-platform}} -DBUILD_LIB=ON -DBUILD_BIN=ON -DBUILD_HDR=ON -DBUILD_TESTING=ON -DBUILD_SAN=ON cmake --build out/${{matrix.target-platform}} --target wtr.test_watcher --config Debug cmake --build out/${{matrix.target-platform}} --target wtr.test_watcher --config Release - shell: bash