mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-25 01:29:00 +08:00
2017886818
- Setup and use pkg-config for ffmpeg dependencies. https://github.com/microsoft/vcpkg/pull/38011#discussion_r1623174355. - Export actual c++ link libraries for fdk-aac via pkg-config. (Same pattern as lerc, geos.) - Rectify link libraries in pkg-config for alsa, libsrt, snappy, x265. - Burn-in dllimport for libsrt and x265. - Pass detected STRIP to ffmpeg. Fixes https://github.com/microsoft/vcpkg/issues/36852.
11 lines
273 B
PkgConfig
11 lines
273 B
PkgConfig
prefix=${pcfiledir}/../..
|
|
exec_prefix=${prefix}
|
|
libdir=${prefix}/lib
|
|
includedir=${prefix}/include
|
|
|
|
Name: snappy
|
|
Description: A fast compressor/decompressor.
|
|
Version: @PROJECT_VERSION@
|
|
Libs: -L${libdir} -lsnappy
|
|
Cflags: -I${includedir}
|
|
Libs.private: @LIBS_PRIVATE@ |