致命错误:gst / gst.h:没有这样的文件或目录(使用CMake)

时间:2017-11-20 09:06:00

标签: c++ cmake gstreamer

我正在尝试使用CMake使用gstreamer构建C ++应用程序。在我的CMakeLists.txt文件中,gstreamer包含在以下行中:

find_package(PkgConfig REQUIRED)

pkg_search_module(GST REQUIRED gstreamer-1.0>=1.4
    gstreamer-sdp-1.0>=1.4
    gstreamer-video-1.0>=1.4
    gstreamer-app-1.0>=1.4)

我可以毫无错误地运行cmake,但make会出现以下错误:

  

致命错误:gst / gst.h:没有这样的文件或目录

安装了Gstreamer,我检查了gst.h文件是否位于 /usr/include/gstreamer-1.0/gst/gst.h 以及其他gstreamer头文件。

已设置以下环境变量:

export PKG_CONFIG_PATH=/opt/qt-5.9.1/lib/pkgconfig
export LD_LIBRARY_PATH=/opt/qt-5.9.1/lib
export GST_PLUGIN_PATH=/usr/include/gstreamer-1.0

我还检查了pkg-config的输出,在另一篇文章中提出了类似的问题:

$ pkg-config --cflags gstreamer-1.0
-pthread -I/usr/include/gstreamer-1.0 -I/usr/lib/x86_64-linux-gnu/gstreamer-1.0/include -I/usr/include/glib-2.0 -I/usr/x86_64-linux-gnu/glib-2.0/include

那为什么不能找到gstreamer头文件呢?

(我是gstreamer和CMake的新手)

1 个答案:

答案 0 :(得分:5)

事实证明,我并没有将库实际链接到应用程序。将以下两行添加到CMakeLists.txt修复了错误(如果有其他人犯了与我相同的错误):

target_include_directories(videoDemo PRIVATE ${GST_INCLUDE_DIRS})
target_link_libraries(videoDemo ${GST_LIBRARIES})

(videoDemo是应用程序的名称)