- directory should be the last argument for CMake

Fixes #29
This commit is contained in:
alexey.lysiuk 2021-07-18 19:55:44 +03:00 committed by GitHub
parent 95e6bfcd8c
commit d8e6e28879
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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.