Skip to content

Commit

Permalink
remove explicit selection of Windows SDK
Browse files Browse the repository at this point in the history
the selected Windows SDK is outdated, so maybe this is the reason why
the build fails for std::filesystem
  • Loading branch information
herzbube committed Jan 3, 2024
1 parent 6c9b012 commit 8b3bbc2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:
cmake -DCMAKE_BUILD_TYPE=Release ..
if: matrix.os == 'macos-latest' || matrix.os == 'ubuntu-latest'

- name: Generat build system (Windows)
- name: Generate build system (Windows)
run: |
mkdir build
cd build
Expand All @@ -55,7 +55,7 @@ jobs:
# warnings, and eventually also some compiler errors. Windows SDK
# 10.0.18362.0 is a version that is known to work and that is also known
# to be installed on the windows-latest runner.
cmake -DCMAKE_SYSTEM_VERSION="10.0.18362.0" ..
#cmake -DCMAKE_SYSTEM_VERSION="10.0.18362.0" ..
if: matrix.os == 'windows-latest'

- name: Build the project
Expand Down

0 comments on commit 8b3bbc2

Please sign in to comment.