From 6cc77df701485371c1718841885c3617429b44c3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Patrick=20Abrah=C3=A3o?= Date: Fri, 24 May 2024 16:28:03 +0200 Subject: [PATCH] Set cmake for install MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Patrick Abrahão --- .github/workflows/build-on-change-windows.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build-on-change-windows.yaml b/.github/workflows/build-on-change-windows.yaml index a70c5e1a..039400f7 100644 --- a/.github/workflows/build-on-change-windows.yaml +++ b/.github/workflows/build-on-change-windows.yaml @@ -54,8 +54,8 @@ jobs: mkdir build cd build cmake -G "Visual Studio 16 2019" .. - make - make install + cmake --build . --config Debug + cmake --build . --config Debug --target install echo Gtest installed. shell: pwsh