1a995cc991
If only a static library is installed, the user of the library may not know that only a static version of this particular library is available (and doesn't know that --static should be added to the pkg-config call). Therefore, one common practice is to include private dependencies in the public Libs line if a static-only library is installed.
11 lines
340 B
PkgConfig
11 lines
340 B
PkgConfig
prefix=@prefix@
|
|
libdir=${prefix}/lib
|
|
includedir=${prefix}/include
|
|
|
|
Name: OpenH264
|
|
Description: OpenH264 is a codec library which supports H.264 encoding and decoding. It is suitable for use in real time applications such as WebRTC.
|
|
Version: @VERSION@
|
|
Libs: -L${libdir} -lopenh264 @LIBS@
|
|
Libs.private: @LIBS_PRIVATE@
|
|
Cflags: -I${includedir}
|