Remove SDL_bool and SDL_TRUE in line with latest SDL3 #133
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build (OS/2) | |
on: [push, pull_request] | |
jobs: | |
os2: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: open-watcom/setup-watcom@v0 | |
- name: Build physfs.dll | |
run: | | |
cd src | |
wmake -f Makefile.os2 | |
cd .. | |
- name: distclean | |
run: | | |
cd src | |
wmake -f Makefile.os2 distclean | |
cd .. |