diff options
author | Reynaldo H. Verdejo Pinochet <reynaldo@osg.samsung.com> | 2016-08-25 14:05:15 -0700 |
---|---|---|
committer | Reynaldo H. Verdejo Pinochet <reynaldo@osg.samsung.com> | 2017-10-27 15:16:20 -0700 |
commit | 02e9e8bc177d0869ae79998d6e182a42827f7ace (patch) | |
tree | bab5dd337383df86da8a7893be080206bc0cc89f | |
parent | 323d4b37a09ae5c8800b390ab88a3b714aa21655 (diff) |
build: add -uninstalled.pc.in files for libweston and libweston-desktopuninstalled
-uninstalled.pc files are a pkg-config facility for working with
uninstalled libraries.
With pkg-config, foo-uninstalled.pc overrides foo.pc. foo-uninstalled.pc
should never be installed, and will be generated with references to the
build directory.
If you set up your environment so pkg-config looks for .pc files in your
build directories, you can use this to build and link against libraries
you haven't installed with "make install".
This can save time and space over installing with a prefix.
Signed-off-by: Reynaldo H. Verdejo Pinochet <reynaldo@osg.samsung.com>
Acked-by: Bryce Harrington <bryce@osg.samsung.com>
Reviewed-by: Derek Foreman <derekf@osg.samsung.com>
-rw-r--r-- | configure.ac | 2 | ||||
-rw-r--r-- | libweston-desktop/libweston-desktop-uninstalled.pc.in | 9 | ||||
-rw-r--r-- | libweston/libweston-uninstalled.pc.in | 9 |
3 files changed, 20 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index c287fac6..5f31bbcb 100644 --- a/configure.ac +++ b/configure.ac @@ -679,7 +679,9 @@ AC_CONFIG_FILES([Makefile libweston/version.h compositor/weston.pc]) # AC_CONFIG_FILES needs the full name when running autoconf, so we need to use # libweston_abi_version here, and outside [] because of m4 quoting rules AC_CONFIG_FILES([libweston/libweston-]libweston_major_version[.pc:libweston/libweston.pc.in]) +AC_CONFIG_FILES([libweston/libweston-]libweston_major_version[-uninstalled.pc:libweston/libweston-uninstalled.pc.in]) AC_CONFIG_FILES([libweston-desktop/libweston-desktop-]libweston_major_version[.pc:libweston-desktop/libweston-desktop.pc.in]) +AC_CONFIG_FILES([libweston-desktop/libweston-desktop-]libweston_major_version[-uninstalled.pc:libweston-desktop/libweston-desktop-uninstalled.pc.in]) AM_CONDITIONAL([HAVE_GIT_REPO], [test -f $srcdir/.git/logs/HEAD]) diff --git a/libweston-desktop/libweston-desktop-uninstalled.pc.in b/libweston-desktop/libweston-desktop-uninstalled.pc.in new file mode 100644 index 00000000..4fb798d5 --- /dev/null +++ b/libweston-desktop/libweston-desktop-uninstalled.pc.in @@ -0,0 +1,9 @@ +libdir=@abs_top_builddir@/.libs +includedir=@abs_top_srcdir@ + +Name: libweston-desktop, uninstalled +Description: Desktop shells abstraction library for libweston compositors (not installed) +Version: @WESTON_VERSION@ +Requires.private: libweston-@LIBWESTON_MAJOR@-uninstalled wayland-server +Cflags: -I${includedir}/libweston-desktop -I${includedir}/shared +Libs: -L${libdir} -lweston-desktop-@LIBWESTON_MAJOR@ diff --git a/libweston/libweston-uninstalled.pc.in b/libweston/libweston-uninstalled.pc.in new file mode 100644 index 00000000..b6efd8a4 --- /dev/null +++ b/libweston/libweston-uninstalled.pc.in @@ -0,0 +1,9 @@ +libdir=@abs_top_builddir@/.libs +includedir=@abs_top_srcdir@ + +Name: libweston API, uninstalled +Description: Header files for libweston compositors development (not installed) +Version: @WESTON_VERSION@ +Requires.private: wayland-server pixman-1 xkbcommon +Cflags: -I${includedir}/libweston -I${includedir}/shared +Libs: -L${libdir} -lweston-@LIBWESTON_MAJOR@ |