libvips/vips.pc.in
John Cupitt 366e7e3a5e add gobject to Requires: line
vips C and C++ programs can link directly against things in gobject
without appearing to, for example:

	a = VIPS_OBJECT( b );

the macro will expand to include a g_type_check_instance_is_a(). So we
have to have gobject-2.0 in the link line of things like:

	g++ -g -Wall hello8.cc `pkg-config vips-cpp --cflags --libs`

see also

	https://github.com/jcupitt/libvips/issues/196
2014-12-24 10:10:14 +00:00

15 lines
290 B
PkgConfig

prefix=@prefix@
exec_prefix=@exec_prefix@
libdir=@libdir@
includedir=@includedir@
Name: vips
Description: Image processing library
Version: @VERSION@
Requires.private: @PACKAGES_USED@
Requires: gobject-2.0
Libs: -L${libdir} -lvips
Libs.private: @EXTRA_LIBS_USED@
Cflags: -I${includedir}