From d8e6e28879ee97d00ce0eb9ad13ba462d85faf29 Mon Sep 17 00:00:00 2001 From: "alexey.lysiuk" Date: Sun, 18 Jul 2021 19:55:44 +0300 Subject: [PATCH] - directory should be the last argument for CMake Fixes #29 --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index e1c3995..ae5ab49 100644 --- a/README.md +++ b/README.md @@ -9,8 +9,8 @@ Compile instructions are pretty simple for most systems. git clone https://github.com/coelckers/ZMusic.git mkdir ZMusic/build cd ZMusic/build -cmake .. -DCMAKE_BUILD_TYPE=Release -cmake . --build +cmake -DCMAKE_BUILD_TYPE=Release .. +cmake --build . ``` On Unix/Linux you may also supply `sudo make install` in the build folder to push the compiled library directly into the file system so that it can be found by the previously mentioned projects.