From f697ba6139f414bde4a7fd76ec91c60cca06bafa Mon Sep 17 00:00:00 2001 From: Jonas Erbe Date: Tue, 28 May 2019 21:55:15 +0200 Subject: [PATCH] Get sources before building portaudio You need the sources before you can build portaudio. --- readme/WindowsBuild.md | 19 +++++++++++-------- 1 file changed, 11 insertions(+), 8 deletions(-) diff --git a/readme/WindowsBuild.md b/readme/WindowsBuild.md index 012422a1..d87262bf 100644 --- a/readme/WindowsBuild.md +++ b/readme/WindowsBuild.md @@ -55,22 +55,25 @@ pacman -S mingw-w64-x86_64-libzip TODO: Lua 5.3 is missing for MSYS2? -### sndfile / PortAudio -Build/Install portaudio with -```bash -windows-setup/build-portaudio.sh -``` -## Get sources and build + +## Get sources ```bash git clone https://github.com/xournalpp/xournalpp.git cd xournalpp/ -mkdir build -cd build/ ``` +## sndfile / PortAudio +Build/Install portaudio with ```bash +windows-setup/build-portaudio.sh +``` + +## Build +```bash +mkdir build +cd build/ cmake .. make ```