Skip to content

Commit

Permalink
try that?
Browse files Browse the repository at this point in the history
  • Loading branch information
thatcosmonaut committed Nov 9, 2024
1 parent 3561f81 commit bf78fa7
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 @@ -438,7 +438,7 @@ jobs:
- name: CMake configure (Debug)
run: |
$env:LDFLAGS = "/LIBPATH:C:\SDL3-$env:SDL3_VERSION\lib\x64 "
cmake -B debug -G "Visual Studio 17 2022" . -DCMAKE_BUILD_TYPE=Debug `
cmake -B debug -G "Visual Studio 17 2022" . -DCMAKE_BUILD_TYPE:STRING=Debug `
-A x64 `
-DBUILD_SDL3=ON `
-DSDL3_INCLUDE_DIRS="C:\SDL3-$env:SDL3_VERSION\include" `
Expand All @@ -450,7 +450,7 @@ jobs:
- name: CMake configure (Release)
run: |
$env:LDFLAGS = "/LIBPATH:C:\SDL3-$env:SDL3_VERSION\lib\x64 "
cmake -B release -G "Visual Studio 17 2022" . -DCMAKE_BUILD_TYPE=Release `
cmake -B release -G "Visual Studio 17 2022" . -DCMAKE_BUILD_TYPE:STRING=Release `
-A x64 `
-DBUILD_SDL3=ON `
-DSDL3_INCLUDE_DIRS="C:\SDL3-$env:SDL3_VERSION\include" `
Expand All @@ -463,7 +463,7 @@ jobs:
uses: actions/upload-artifact@v4
with:
name: FAudio-SDL3-msvc-x64
path: release/Debug/FAudio.dll
path: release/Release/FAudio.dll

macos-SDL3:
name: macOS (Universal) SDL3
Expand Down

0 comments on commit bf78fa7

Please sign in to comment.