From b352b78345e8d3821b01f5b9e4f2094a1e47d99a Mon Sep 17 00:00:00 2001 From: Frank Richter Date: Sat, 7 May 2022 14:57:17 +0200 Subject: [PATCH] Add 'static VCRT' cases to MSVC build matrix --- .github/workflows/msvc.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/msvc.yml b/.github/workflows/msvc.yml index ca78cb1c7..df9c8fe75 100644 --- a/.github/workflows/msvc.yml +++ b/.github/workflows/msvc.yml @@ -13,6 +13,8 @@ jobs: platform: - { name: Windows (x64), flags: -A x64, project: VisualC/SDL.sln, projectflags: '/p:Platform=x64' } - { name: Windows (x86), flags: -A Win32, project: VisualC/SDL.sln, projectflags: '/p:Platform=Win32' } + - { name: Windows static VCRT (x64), flags: -A x64 -DSDL_FORCE_STATIC_VCRT=ON } + - { name: Windows static VCRT (x86), flags: -A Win32 -DSDL_FORCE_STATIC_VCRT=ON } - { name: Windows (clang-cl x64), flags: -T ClangCL -A x64 } - { name: Windows (clang-cl x86), flags: -T ClangCL -A Win32 } - { name: Windows (ARM64), flags: -A ARM64 }