mirror of
https://github.com/json-c/json-c.git
synced 2026-03-21 05:59:07 +08:00
git-svn-id: http://svn.metaparadigm.com/svn/json-c/trunk@72 327403b1-1117-474d-bef2-5cb71233fd97
26 lines
535 B
Plaintext
26 lines
535 B
Plaintext
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 install
|
|
|
|
To 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)
|