mirror of
https://github.com/akheron/jansson.git
synced 2025-04-04 21:15:04 +00:00
Add pkg-config support
Thanks to Sean Middleditch for contributing.
This commit is contained in:
parent
f5202bedef
commit
aeb5b481c9
4 changed files with 15 additions and 0 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -22,3 +22,4 @@ missing
|
|||
*.la
|
||||
stamp-h1
|
||||
*.pyc
|
||||
*.pc
|
||||
|
|
|
@ -1,6 +1,9 @@
|
|||
EXTRA_DIST = CHANGES LICENSE README.rst
|
||||
SUBDIRS = doc src test
|
||||
|
||||
pkgconfigdir = $(libdir)/pkgconfig
|
||||
pkgconfig_DATA = jansson.pc
|
||||
|
||||
distcheck-hook:
|
||||
sphinx-build -b html -W \
|
||||
$(distdir)/doc \
|
||||
|
|
|
@ -19,6 +19,7 @@ AC_PROG_LIBTOOL
|
|||
# Checks for library functions.
|
||||
|
||||
AC_CONFIG_FILES([
|
||||
jansson.pc
|
||||
Makefile
|
||||
doc/Makefile
|
||||
src/Makefile
|
||||
|
|
10
jansson.pc.in
Normal file
10
jansson.pc.in
Normal file
|
@ -0,0 +1,10 @@
|
|||
prefix=@prefix@
|
||||
exec_prefix=@exec_prefix@
|
||||
libdir=@libdir@
|
||||
includedir=${prefix}/include
|
||||
|
||||
Name: Jansson
|
||||
Description: Library for encoding, decoding and manipulating JSON data
|
||||
Version: @VERSION@
|
||||
Libs: -L${libdir} -ljansson
|
||||
Cflags: -I${includedir}
|
Loading…
Add table
Reference in a new issue