Skip to content

Commit

Permalink
fix windows path
Browse files Browse the repository at this point in the history
  • Loading branch information
fdch committed Jun 18, 2023
1 parent 45e3acd commit a998e84
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/compile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,18 +65,19 @@ jobs:
runs-on: windows-latest
env:
OUTPUT: fd_lib-${{ github.job }}
PDVERSION: pd-0.53-2
steps:
- uses: actions/checkout@v3
- name: get pdlibbuilder
run: git submodule init && git submodule update
- name: get pd
run: |
curl -O http://msp.ucsd.edu/Software/pd-0.53-2.msw.zip
unzip -d pure-data pd-0.53-2.msw.zip
curl -O http://msp.ucsd.edu/Software/$PDVERSION.msw.zip
unzip $PDVERSION.msw.zip
- name: configure
run: ./config.sh
- name: make
run : make pdbinpath=pure-data/bin PDINCLUDEDIR=pure-data/src CFLAGS=-march=x86-64 -Iinclude
run : make pdbinpath=$PDVERSION/bin PDINCLUDEDIR=$PDVERSION/src CFLAGS=-march=x86-64 -Iinclude
- name: install lib
run: |
make install PDLIBDIR=.
Expand Down

0 comments on commit a998e84

Please sign in to comment.