From 0bd339d73786e1ba54492f7c140d797f8d188261 Mon Sep 17 00:00:00 2001 From: Rachael Alexanderson <18584402+madame-rachelle@users.noreply.github.com> Date: Sat, 2 Jan 2021 06:47:39 -0500 Subject: [PATCH] Create README.md --- README.md | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..e1c3995 --- /dev/null +++ b/README.md @@ -0,0 +1,16 @@ +# ZMusic +GZDoom's music system as a standalone library + +Welcome! This repository is a library for use with the projects [GZDoom](https://github.com/coelckers/GZDoom), [Raze](https://github.com/coelckers/Raze), and the newer [PrBoom+](https://github.com/coelckers/prboom-plus). + +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 +``` + +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.