Skip to content

Commit

Permalink
ci windows: toying with paths
Browse files Browse the repository at this point in the history
  • Loading branch information
smoe committed Mar 13, 2024
1 parent a105d31 commit 795e744
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/c-cpp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,9 @@ jobs:
run: ./configure
- name: make - Windows
if: runner.os == 'windows'
run: g++ -I\\wxWidgets-3.1.2\\include -I\\wxWidgets-3.1.2\\include\\msvc -o GENtle *.cpp ipc/*.cpp
run: |
pwd
g++ -D__WXMSW__ -IC:\wxWidgets-3.1.2\include -IC:\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 Down

0 comments on commit 795e744

Please sign in to comment.