Skip to content

Latest commit

 

History

History
28 lines (22 loc) · 1.05 KB

README.md

File metadata and controls

28 lines (22 loc) · 1.05 KB

simplejsonparser

Code Quality: Cpp Total Alerts

C++ library for parsing simple (non-nested) JSON encoded strings. The code in this repo. is part of the implementation of a light stream processing application to analyze system's logs (some kind of HIDS) that is currently in development.

Requirements

  • OS Used in development: Ubuntu 18.04

  • Additional system information: Linux 4.18.0-21-generic #22~18.04.1-Ubuntu SMP Thu May 16 15:07:19 UTC 2019 x86_64 x86_64 x86_64 GNU/Linux

UNTIL FURTHER NOTICE, TRY IT WITH THE FOLLOWING COMANDS:

NOTE: The following commands were used in an Ubuntu shell

    $ sudo apt-get install -y build-essential 
    $ make
    $ make run

To run the example.cc source with gdb, try the following:

    $ make debug

To run the tests, try the following:

    $ make test