介子:找不到依赖项 - 尝试了 pkg-config 和 cmake

Meson : Dependency not found - Tried both pkg-config and cmake

我正在尝试编译 Pulse Effects 项目,我在 运行 meson build:

之后遇到了这个问题
Dependency gstreamer-1.0 found: NO (tried pkgconfig and cmake)
src/meson.build:97:0: ERROR:  Dependency "gstreamer-1.0" not found, tried pkgconfig and cmake

但它肯定已经安装并且 sudo apt install gstreamer-1.0 说:

libqt5gstreamer-1.0-0 is already the newest version (1.2.0-5).
gir1.2-gstreamer-1.0 is already the newest version (1.14.5-0ubuntu1~18.04.1)

我用的是ubuntu18.04.
有什么想法吗?

最终安装包 libgstreamer1.0-dev 完成了工作。

问题是 gstreamerpkg-config 名称是 gstreamer-1.0 但开发文件的实际包名称是 libgstreamer1.0-devmeson.build 文件中,它被提到为 gstreamer-1.0。所以这很混乱。

希望对以后的读者有所帮助。