如何将 CGAL 包含到 QT Creator 中的 QT 项目中?
我正在尝试将 CGAL 中的一些示例代码作为 Qt 项目运行,以便在 Qt Creator 中运行。我预计我必须修改 .pro
文件。应该如何修改才能使用CGAL库?
I am trying to run some of the sample example code from CGAL as a Qt project, to run in Qt Creator. I expect that I will have to modify the .pro
file. How should it be modified to use CGAL libraries?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我对 CGAL 并不熟悉,但一般,您需要将以下内容添加到您的
.pro
文件中:您可能还需要添加一些
DEFINES
如果 CGAL 需要它,即如果您专门在 CGAL 上寻求帮助,请澄清您的问题,我将删除此答案。
I'm not familiar with CGAL specifically, but in general, you would need to add the following to your
.pro
file:You may also need to add some
DEFINES
if CGAL requires it, i.e.If you were looking for help on CGAL specifically, please clarify your question and I will delete this answer.
虽然这是一个老问题,但为了获得更完整的答案,这就是我必须在 .pro 文件中执行的操作:
不要不要添加如下内容,它会让你遇到奇怪的错误消息的麻烦,如 此链接。
Although this is an old question, just for the sake of having a more complete answer, this is what I had to do in the .pro file:
Do NOT add stuff like the following, it will get you into trouble with weird error messages, as discussed in this link.
我正在使用 Qt 4.8.6、gcc 和 Fedora 24,这是我的 Qt-CGAL 项目的 .pro :
I'm using Qt 4.8.6, gcc and Fedora 24, and here is my .pro for Qt-CGAL projects :