From 4f6178db712964d839c766a9ae3cd352a8cf857f Mon Sep 17 00:00:00 2001 From: fshstk Date: Fri, 30 Sep 2022 16:08:50 +0200 Subject: [PATCH] Update README - Add info about installing cmake - Change build instructions from qmake to cmake - Remove info about installing deps in README We don't need to do this anymore. CMake will do it automatically at configure-time! --- README.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index e2ea65d..749f63a 100644 --- a/README.md +++ b/README.md @@ -83,9 +83,9 @@ If you'd like the right font, optionally: # Building from source ## Linux (Ubuntu) -Install libraries for the sample engine (use brew on mac, MinGW on win): +Install cmake: - $ sudo apt install libsndfile1-dev portaudio19-dev liblo-dev libfftw3-dev + $ sudo apt install cmake Install dependencies for the interface: @@ -101,9 +101,9 @@ Build & run it: $ samplebrain ## Mac -Install libraries for sample engine: +Install cmake: - $ brew install fftw portaudio liblo libsndfile + $ brew install cmake Install dependencies for the interface: @@ -114,8 +114,8 @@ Build & run it: $ mkdir build $ cd build - $ qmake .. - $ make + $ cmake .. + $ cmake --build . `samplebrain.app` should then be in the app folder for you to run.