From bcb5f366e5681c4c16e2b1d398660f0dc6b3cb7a Mon Sep 17 00:00:00 2001 From: Snider Date: Thu, 2 Oct 2025 11:57:28 +0100 Subject: [PATCH] Update MSVC setup and set build type to Release Adds TheMrMilchmann/setup-msvc-dev action to the Windows workflow with toolset 17.11.5 and x64 architecture. Also sets build_type to Release in the MSVC 194 x86_64 CMake profile. --- .github/workflows/build-windows-intel.yml | 5 +++++ cmake/profiles/msvc-194-x86_64 | 1 + 2 files changed, 6 insertions(+) diff --git a/.github/workflows/build-windows-intel.yml b/.github/workflows/build-windows-intel.yml index 929fef9f..8721a2a1 100644 --- a/.github/workflows/build-windows-intel.yml +++ b/.github/workflows/build-windows-intel.yml @@ -21,6 +21,11 @@ jobs: fetch-depth: 0 submodules: recursive + - uses: TheMrMilchmann/setup-msvc-dev@v4 + with: + arch: x64 + toolset: 17.11.5 + - name: Cache SDK Folder uses: actions/cache@v4 with: diff --git a/cmake/profiles/msvc-194-x86_64 b/cmake/profiles/msvc-194-x86_64 index d969128c..5d56b3b2 100644 --- a/cmake/profiles/msvc-194-x86_64 +++ b/cmake/profiles/msvc-194-x86_64 @@ -5,3 +5,4 @@ compiler.cppstd=17 compiler.runtime=static compiler.version=194 os=Windows +build_type=Release \ No newline at end of file