GStreamer Xcode 10.1 gst/gst.h not found

时间秒杀一切 提交于 2019-12-11 06:37:58

问题


GStreamer gst.h file is not found error is coming in Xcode 10.1. Has anyone been able to find a solution for it???

This error even comes if I use Objective-C as primary language for iOS Project.


回答1:


It looks like the Xcode changed the path setting mechanism. Home dir ~/ not working now, use $(HOME) indeed. Just change the project settings (Project ->TARGETS ->Build Settings)

Change both Framework Search Paths & Header Search Paths prefix ~/ to $(HOME), after that, it now will be:

Framework Search Paths: "$(HOME)/Library/Developer/GStreamer/iPhone.sdk"

Header Search Paths: "$(HOME)/Library/Developer/GStreamer/iPhone.sdk/GStreamer.framework/Headers"

Face the same issue just now, after this, all works fine.



来源:https://stackoverflow.com/questions/53443665/gstreamer-xcode-10-1-gst-gst-h-not-found

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!