CMake 编译错误..(未知的 CMake 命令“QT4_WRAP_UI”)
我正在尝试为 qgis 构建草插件..
当我尝试使用 cmake ..配置后出现以下错误..
CMake Error at CMakeLists.txt:78 (QT4_WRAP_UI):
Unknown CMake command "QT4_WRAP_UI".
我已经安装了 Qt4,PyQt 和 python2.6..
任何人都可以帮助我找出问题所在这里?
谢谢。
im trying to build grass plugin for qgis ..
when i try to use cmake .. i get the following error after configuring..
CMake Error at CMakeLists.txt:78 (QT4_WRAP_UI):
Unknown CMake command "QT4_WRAP_UI".
I have Qt4 ,PyQt and python2.6 installed already..
can anyone help me how to figure out whats wrong here?
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您需要从 CMake 导入 Qt4 宏。 像这样的一行应该可以做到:
You need to import the Qt4 macros from CMake. A line like this should do it:
除了定位包之外,您还应该包含 ${QT_USE_FILE},即:
In addition to just locating the package you should include ${QT_USE_FILE}, that is: