From dc2504e560ece1161bf3fd4c19187db5f8c84dda Mon Sep 17 00:00:00 2001 From: Ethan Lee Date: Sat, 8 Aug 2026 10:49:42 -0400 Subject: [PATCH] ci: Update to VS2026. GitHub Actions doesn't provide 2022 by default anymore :( --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 446b49df..c87f612a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -148,7 +148,7 @@ jobs: mkdir $env:SRC_DIR_PATH/build cd $env:SRC_DIR_PATH/build $env:LDFLAGS = "/LIBPATH:C:\SDL2-$env:SDL_VERSION\lib\x86 " - cmake -G "Visual Studio 17 2022" -A Win32 ` + cmake -G "Visual Studio 18 2026" -A Win32 ` -DSDL2_INCLUDE_DIRS="C:\SDL2-$env:SDL_VERSION\include" ` -DSDL2_LIBRARIES="SDL2;SDL2main" ..