Blame README.html

Packit ea8578
Packit ea8578
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
Packit ea8578
	<head>
Packit ea8578
		<title>JSON-C - A JSON implementation in C</title>
Packit ea8578
		<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
Packit ea8578
	</head>
Packit ea8578
	<body>
Packit ea8578
		

JSON-C - A JSON implementation in C

Packit ea8578
Packit ea8578
		

Overview

Packit ea8578
		

JSON-C implements a reference counting object model that allows you to easily

Packit ea8578
		construct JSON objects in C, output them as JSON formatted strings and parse 
Packit ea8578
		JSON formatted strings back into the C representation of JSON objects.
Packit ea8578
		It aims to conform to RFC 7159.
Packit ea8578
		

Packit ea8578
Packit ea8578
		

Building

Packit ea8578
		

To setup JSON-C to build on your system please run <tt>configure</tt> and <tt>make</tt>.

Packit ea8578
		

If you are on Win32 cmake is required, generally:

Packit ea8578
		
    Packit ea8578
    		
  • mkdir build
  • Packit ea8578
    		
  • cd build
  • Packit ea8578
    		
  • cmake ..
  • Packit ea8578
    		
  • msbuild "json-c.vcxproj" /m /verbosity:normal /p:OutDir=lib\
  • Packit ea8578
    		
  • Or, open the project in Visual Studio
  • Packit ea8578
    		
    Packit ea8578
    Packit ea8578
    		

    Documentation

    Packit ea8578
    		

    Doxygen generated documentation exists here

    Packit ea8578
    		and Win32 specific notes can be found here.

    Packit ea8578
    Packit ea8578
    		

    GIT Reposository

    Packit ea8578
    		

    git clone https://github.com/json-c/json-c.git

    Packit ea8578
    Packit ea8578
    		

    Mailing List

    Packit ea8578
                    <pi>Send email to json-c <at> googlegroups <dot> com

    Packit ea8578
    Packit ea8578
    		

    License

    Packit ea8578
    		

    This program is free software; you can redistribute it and/or modify it under the terms of the MIT License.

    Packit ea8578
    		
    Packit ea8578
    	</body>
    Packit ea8578
    </html>