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 c0488f1
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/c-cpp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,14 @@ 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
dir \
echo "\wxWidgets-3.1.2\include"
dir \wxWidgets-3.1.2\include
echo "\wxWidgets-3.1.2\include\msvc"
dir \wxWidgets-3.1.2\include\msvc
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 Down

0 comments on commit c0488f1

Please sign in to comment.