mirror of
https://github.com/brl/mutter.git
synced 2025-03-15 15:55:05 +00:00

If mutter is going to be a "real" library, then it should install its includes so that users can do #include <meta/display.h> rather than #include <display.h> So rename the includedir accordingly, move src/include to src/meta, and fix up all internal references. There were a handful of header files in src/include that were not installed; this appears to have been part of a plan to keep core/, ui/, and compositor/ from looking at each others' private includes, but that wasn't really working anyway. So move all non-installed headers back into core/ or ui/. https://bugzilla.gnome.org/show_bug.cgi?id=643959
19 lines
701 B
PkgConfig
19 lines
701 B
PkgConfig
prefix=@prefix@
|
|
exec_prefix=@exec_prefix@
|
|
libdir=@libdir@
|
|
includedir=@includedir@
|
|
girdir=@libdir@/mutter
|
|
typelibdir=@libdir@/mutter
|
|
|
|
mutter_major_version=@MUTTER_MAJOR_VERSION@
|
|
mutter_minor_version=@MUTTER_MINOR_VERSION@
|
|
mutter_micro_version=@MUTTER_MICRO_VERSION@
|
|
mutter_plugin_api_version=@MUTTER_PLUGIN_API_VERSION@
|
|
|
|
Name: libmutter-wm
|
|
Description: Mutter window manager library
|
|
Requires: gtk+-3.0 @CLUTTER_PACKAGE@ x11
|
|
Version: @VERSION@
|
|
Libs: -L${libdir} -lmutter-wm
|
|
Cflags: -I${includedir}/mutter -DMUTTER_MAJOR_VERSION=${mutter_major_version} -DMUTTER_MINOR_VERSION=${mutter_minor_version} -DMUTTER_MICRO_VERSION=${mutter_micro_version} -DMUTTER_PLUGIN_API_VERSION=${mutter_plugin_api_version}
|