From b8b17ee18b15f3f72774323638ec38c63d3553be Mon Sep 17 00:00:00 2001 From: Rockford the Roe <130606096+rockfordroeNG@users.noreply.github.com> Date: Tue, 9 Dec 2025 00:59:02 -0600 Subject: [PATCH 1/2] platforms/win/x64/external.sh: Update to VS2026 --- platforms/win/x64/external.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/platforms/win/x64/external.sh b/platforms/win/x64/external.sh index df5643f..0cdad01 100755 --- a/platforms/win/x64/external.sh +++ b/platforms/win/x64/external.sh @@ -25,7 +25,7 @@ mv cargs-${CARGS_SHA} cargs cd cargs sed -i.bak 's/set_target_properties(cargs PROPERTIES DEFINE_SYMBOL CAG_EXPORTS)/set_target_properties(cargs PROPERTIES DEFINE_SYMBOL CAG_EXPORTS)\nset_target_properties(cargs PROPERTIES OUTPUT_NAME cargs64)/' CMakeLists.txt cmake \ - -G "Visual Studio 17 2022" \ + -G "Visual Studio 18 2026" \ -DBUILD_SHARED_LIBS=ON \ -B build cmake --build build --config ${BUILD_TYPE} @@ -73,7 +73,7 @@ mv sockpp-${SOCKPP_SHA} sockpp cd sockpp sed -i.bak 's/set(SOCKPP_SHARED_LIBRARY sockpp)/set(SOCKPP_SHARED_LIBRARY sockpp64)/' CMakeLists.txt cmake \ - -G "Visual Studio 17 2022" \ + -G "Visual Studio 18 2026" \ -B build cmake --build build --config ${BUILD_TYPE} cp -r include/sockpp ../../third-party/include/ From 97711b5bac52f95443c32f47ac398f0dd8c4571d Mon Sep 17 00:00:00 2001 From: Rockford the Roe <130606096+rockfordroeNG@users.noreply.github.com> Date: Tue, 9 Dec 2025 01:01:56 -0600 Subject: [PATCH 2/2] platforms/win/x86/external.sh: Update to VS2026 --- platforms/win/x86/external.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/platforms/win/x86/external.sh b/platforms/win/x86/external.sh index b916df3..9303694 100755 --- a/platforms/win/x86/external.sh +++ b/platforms/win/x86/external.sh @@ -24,7 +24,7 @@ tar xzf cargs-${CARGS_SHA}.tar.gz mv cargs-${CARGS_SHA} cargs cd cargs cmake \ - -G "Visual Studio 17 2022" \ + -G "Visual Studio 18 2026" \ -DBUILD_SHARED_LIBS=ON \ -A Win32 \ -B build @@ -71,7 +71,7 @@ tar xzf sockpp-${SOCKPP_SHA}.tar.gz mv sockpp-${SOCKPP_SHA} sockpp cd sockpp cmake \ - -G "Visual Studio 17 2022" \ + -G "Visual Studio 18 2026" \ -A Win32 \ -B build cmake --build build --config ${BUILD_TYPE}