Skip to content

Commit

Permalink
Introduce include path for wxWidgets.
Browse files Browse the repository at this point in the history
  • Loading branch information
smoe committed Mar 13, 2024
1 parent 8520744 commit a105d31
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions .github/workflows/c-cpp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,7 @@ jobs:
run: ./configure
- name: make - Windows
if: runner.os == 'windows'
run: |
g++ -o GENtle *.cpp ipc/*.cpp
run: g++ -I\\wxWidgets-3.1.2\\include -I\\wxWidgets-3.1.2\\include\\msvc -o GENtle *.cpp ipc/*.cpp
- name: make - Linux or MacOS
if: runner.os == 'linux' || runner.os == 'macOS'
run: |
Expand All @@ -57,8 +56,8 @@ jobs:
elif [ "${{ matrix.os }}" = "ubuntu-latest" ]; then
make
else
echo "Unexpected runer.os: ${{ runner.os }}"
exit
echo "Unexpected runer.os: ${{ runner.os }}"
exit
fi
- name: install asciidoc
if: runner.os == 'linux' || runner.os == 'macOS'
Expand Down

0 comments on commit a105d31

Please sign in to comment.