Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jehiah/json-c
Official code repository for json-c http://oss.metaparadigm.com/json-c/
https://github.com/jehiah/json-c
Last synced: 3 months ago
JSON representation
Official code repository for json-c http://oss.metaparadigm.com/json-c/
- Host: GitHub
- URL: https://github.com/jehiah/json-c
- Owner: jehiah
- License: mit
- Fork: true (json-c/json-c)
- Created: 2011-06-14T00:06:18.000Z (over 13 years ago)
- Default Branch: master
- Last Pushed: 2015-08-31T20:53:21.000Z (about 9 years ago)
- Last Synced: 2024-07-16T12:00:09.067Z (4 months ago)
- Language: C
- Homepage: http://oss.metaparadigm.com/json-c/
- Size: 297 KB
- Stars: 125
- Watchers: 22
- Forks: 60
- Open Issues: 1
-
Metadata Files:
- Readme: README
- Changelog: ChangeLog
- License: COPYING
Awesome Lists containing this project
README
Building on Unix with gcc and autotools
Home page for json-c:
http://oss.metaparadigm.com/json-c/If checking out from SVN (http://svn.metaparadigm.com/svn/json-c/trunk) or Git (https://github.com/jehiah/json-c):
$ sh autogen.sh
Then
$ ./configure
$ make
$ make installTo build and run the test programs run
$ make check
Linking to libjson
If your system has pkgconfig then you can just add this to your makefile
CFLAGS += $(shell pkg-config --cflags json)
LDFLAGS += $(shell pkg-config --libs json)