From 8f46d7c6ad09269b29784e8af6b20f795453d159 Mon Sep 17 00:00:00 2001 From: Stephen G Tuggy Date: Sat, 18 Sep 2021 06:53:03 -0700 Subject: [PATCH] GH Actions: Windows-CI: Add more params specifying the Win SDK version --- .github/workflows/Windows-CI.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/Windows-CI.yml b/.github/workflows/Windows-CI.yml index e6de729b6c..107dbc2b59 100644 --- a/.github/workflows/Windows-CI.yml +++ b/.github/workflows/Windows-CI.yml @@ -67,7 +67,7 @@ jobs: # Set the build directory, i.e. where CMake generates the build system files. Defaults to `$(Build.ArtifactStagingDirectory)` for CMakeLists.txt, and to `$(Build.ArtifactStagingDirectory)/` for CMakeSettings.json. Used by any mode. buildDirectory: ${{ env.buildDir }} # Provides a mean to provide all the CMake arguments. This is required when using CMakeLists.txt in Advanced mode. For CMakeSettings.json, the arguments are already inferred, but you can append your arguments providing them here. Used by CMakeListsTxtAdvanced and CMakeSettingsJson modes. - cmakeAppendedArgs: '-DUSE_PYTHON_3=ON -DCMAKE_SYSTEM_VERSION="10.0.19041.0"' + cmakeAppendedArgs: '-DCMAKE_SYSTEM_VERSION="10.0.19041.0" -DCMAKE_VS_WINDOWS_TARGET_PLATFORM_VERSION="10.0.19041.0" -DVCPKG_CMAKE_SYSTEM_VERSION="10.0.19041.0" -DCMAKE_VS_WINDOWS_TARGET_PLATFORM_VERSION="10.0.19041.0"' # Indicates whether to run 'cmake --build' after CMake project files have been generated successfully. Used by any mode. buildWithCMake: true # Additional parameters for both CMake and the make program (e.g. ninja or make). Separate CMake arguments to the native make program arguments with '--', such as: '--clean-first --config Debug -- -j0'. Used by both CMakeListsTxtBasic and CMakeListsTxtAdvanced modes