From b125c35f259d42809a97b3f45b24ef98008231c8 Mon Sep 17 00:00:00 2001 From: rexy712 Date: Sat, 24 Nov 2018 09:16:12 -0800 Subject: [PATCH] Added readme --- README.md | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..ac21d86 --- /dev/null +++ b/README.md @@ -0,0 +1,30 @@ +# README + +## About +rjp (rexy's json parser) is a very simplistic json parser written in C. There is absolutely no reason for this to exist but I felt like making it :P + +Currently only installs 2 files: librjp.a and rjp.h + +## Building +Building will produce a static library with no option to create shared because it's such a simple library. + +##### Run the following commands +``` +mkdir build +cd build +ccmake .. +#or jest 'cmake ..' and specify options on the command line +make +``` + +## Installing +##### Run the following commands from the bulid directory after building +``` +sudo make install +``` + +## Uninstalling +##### Run the following commands from the build directory +``` +sudo make uninstall +```