Added readme

This commit is contained in:
Stephen Seo 2017-06-10 22:15:59 +09:00
parent 09a7546509
commit be8ac2f837

16
README.md Normal file
View file

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