mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-14 13:21:28 +00:00
063994267c
Currently the .la path is provided which requires to use libtool as mentioned in the GStreamer manual section-helloworld-compilerun.html. It is fine as long as the application is built using libtool. So currently it is not possible to compile a GStreamer application within gst-uninstalled with CMake or other build system different than autotools. This patch allows to do the following in gst-uninstalled env: gcc test.c -o test $(pkg-config --cflags --libs gstreamer-1.0) Previously it required to prepend libtool --mode=link https://bugzilla.gnome.org/show_bug.cgi?id=720778
20 lines
773 B
PkgConfig
20 lines
773 B
PkgConfig
# the standard variables don't make sense for an uninstalled copy
|
|
prefix=
|
|
exec_prefix=
|
|
libdir=@abs_top_builddir@/gst/.libs
|
|
# includedir is builddir because it is used to find gstconfig.h in places
|
|
includedir=@abs_top_builddir@
|
|
toolsdir=@abs_top_builddir@/tools
|
|
pluginsdir=@abs_top_builddir@
|
|
girdir=@abs_top_builddir@/gst
|
|
completionsdir=@abs_top_builddir@/data/completions
|
|
helpersdir=@abs_top_builddir@/libs/gst/helpers
|
|
typelibdir=@abs_top_builddir@/gst
|
|
|
|
Name: GStreamer Uninstalled
|
|
Description: Streaming media framework, Not Installed
|
|
Version: @VERSION@
|
|
Requires: glib-2.0, gobject-2.0
|
|
Requires.private: gmodule-no-export-2.0
|
|
Libs: -L${libdir} -lgstreamer-@GST_API_VERSION@
|
|
Cflags: -I@abs_top_srcdir@ -I@abs_top_srcdir@/libs -I@abs_top_builddir@ -I@abs_top_builddir@/libs
|