Skip to content

Commit

Permalink
fix wrong include dir
Browse files Browse the repository at this point in the history
  • Loading branch information
thatcosmonaut committed Oct 16, 2024
1 parent 9a62633 commit 6b3f93b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ jobs:
sudo apt-get install ninja-build mingw-w64
- name: CMake configure (Release)
run: cmake -B release -G Ninja . -DCMAKE_BUILD_TYPE=Release -DCMAKE_TOOLCHAIN_FILE=mingw-w64-x86_64.cmake -DSDL2_LIBRARIES="${GITHUB_WORKSPACE}/SDL2-$SDL_VERSION/x86_64-w64-mingw32/bin/SDL2.dll" -DSDL2_INCLUDE_DIRS="${GITHUB_WORKSPACE}/SDL2-$SDL_VERSION/x86_64-w64-mingw32/include"
run: cmake -B release -G Ninja . -DCMAKE_BUILD_TYPE=Release -DCMAKE_TOOLCHAIN_FILE=mingw-w64-x86_64.cmake -DSDL2_LIBRARIES=${GITHUB_WORKSPACE}/SDL2-$SDL_VERSION/x86_64-w64-mingw32/bin/SDL2.dll -DSDL2_INCLUDE_DIRS=${GITHUB_WORKSPACE}/SDL2-$SDL_VERSION/x86_64-w64-mingw32/include/SDL2

- name: Build (Release)
run: ninja -C release
Expand Down

0 comments on commit 6b3f93b

Please sign in to comment.