I have a tree of the artifacts from a build of libvips, including /include, /lib, /lib/pkgconfig etc. When I use #cgo pkg-config: vips in my go source it doesn't seem to be using the .pc files to locate headers, because its failing to locate a header.
Inside include/ there is glib-2.0/stuff but some files are just #include "glibsomething.h" relying on the .pc file to locate it. Is there a way to make this work? I tried setting PKG_CONFIG_PATH and go build but same thing.
Thanks!