From be8ac2f8371e217f41a67fd75250404a2ea6e757 Mon Sep 17 00:00:00 2001 From: Stephen Seo Date: Sat, 10 Jun 2017 22:15:59 +0900 Subject: [PATCH] Added readme --- 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..fe78f3b --- /dev/null +++ b/README.md @@ -0,0 +1,16 @@ + +# Compiling + +Create a build directory. +`mkdir build` + +Generate makefile with CMake. +`cd build` +`cmake -DCMAKE_INSTALL_PREFIX=./install -DCMAKE_BUILD_TYPE=Release -DBUILD_SHARED_LIBS=True ../src` + +Build the project. +`make` + +Optionally install the project to where CMAKE\_INSTALL\_PREFIX was set. +`make install` +