Skip to content

Commit

Permalink
what about this
Browse files Browse the repository at this point in the history
  • Loading branch information
thatcosmonaut committed Nov 9, 2024
1 parent 1ed0a85 commit 17a52ef
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -438,9 +438,8 @@ 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
"-DCMAKE_C_COMPILER:FILEPATH=C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\Llvm\x64\bin\clang-cl.exe"
"-DCMAKE_CXX_COMPILER:FILEPATH=C:\Program Files (x86)\Microsoft Visual Studio\2022\BuildTools\VC\Tools\Llvm\x64\bin\clang-cl.exe"
cmake -B debug -G "Visual Studio 17 2022" . -DCMAKE_BUILD_TYPE=Debug `
-A x64 `
-DSDL3_INCLUDE_DIRS="C:\SDL3-$env:SDL3_VERSION\include" `
-DSDL3_LIBRARIES="SDL3;SDL3main"
Expand All @@ -451,7 +450,7 @@ jobs:
run: |
$env:LDFLAGS = "/LIBPATH:C:\SDL2-$env:SDL2_VERSION\lib\x86 "
cmake -B release -G "Visual Studio 17 2022" . -DCMAKE_BUILD_TYPE=Release `
-A x64 -T ClangCl `
-A x64 `
-DSDL3_INCLUDE_DIRS="C:\SDL3-$env:SDL3_VERSION\include" `
-DSDL3_LIBRARIES="SDL3;SDL3main"
Expand Down

0 comments on commit 17a52ef

Please sign in to comment.