Merge pull request #821 from andreasb242/master

Portaudio Windows Build
presentation
andreasb242 7 years ago committed by GitHub
commit 51cf4a60d3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 3
      readme/WindowsBuild.md
  2. 15
      windows-setup/build-portaudio.sh

@ -52,7 +52,8 @@ pacman -S mingw-w64-x86_64-gtk3
```
### SOX / PortAudio
TODO: Manual compiling or find packages.
Build/Install portaudio with windows-setup/build-portaudio.sh
TODO SOX
## Get sources and build

@ -0,0 +1,15 @@
#!/bin/bash
# go to script directory
cd "${0%/*}"
wget http://www.portaudio.com/archives/pa_stable_v190600_20161030.tgz
tar xzf pa_stable_*.tgz
cd portaudio
./configure --enable-cxx
make -j2
make install
Loading…
Cancel
Save