Skip to content

Commit

Permalink
windows, so fun
Browse files Browse the repository at this point in the history
  • Loading branch information
thatcosmonaut committed Nov 9, 2024
1 parent 1f79cf5 commit ff86a12
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -431,7 +431,7 @@ jobs:
run: |
if (-Not (Test-Path C:\SDL))
{
Invoke-WebRequest "https://github.com/libsdl-org/SDL/releases/download/preview-$SDL3_VERSION/SDL3-devel-$SDL3_VERSION-VC.zip" -OutFile C:\SDL.zip
Invoke-WebRequest "https://github.com/libsdl-org/SDL/releases/download/preview-$env:SDL3_VERSION/SDL3-devel-$env:SDL3_VERSION-VC.zip" -OutFile C:\SDL.zip
Expand-Archive C:\SDL.zip -DestinationPath C:\
}
Expand All @@ -441,7 +441,7 @@ jobs:
cmake -B debug -G "Visual Studio 17 2022" . -DCMAKE_BUILD_TYPE=Debug `
-A x64 `
-DBUILD_SDL3=ON `
-DSDL3_INCLUDE_DIRS="C:\SDL3-$SDL3_VERSION\include" `
-DSDL3_INCLUDE_DIRS="C:\SDL3-$env:SDL3_VERSION\include" `
-DSDL3_LIBRARIES="SDL3"
- name: Build (Debug)
Expand All @@ -453,7 +453,7 @@ jobs:
cmake -B release -G "Visual Studio 17 2022" . -DCMAKE_BUILD_TYPE=Release `
-A x64 `
-DBUILD_SDL3=ON `
-DSDL3_INCLUDE_DIRS="C:\SDL3-$SDL3_VERSION\include" `
-DSDL3_INCLUDE_DIRS="C:\SDL3-$env:SDL3_VERSION\include" `
-DSDL3_LIBRARIES="SDL3"
- name: Build (Release)
Expand Down

0 comments on commit ff86a12

Please sign in to comment.