我使用vcpkg安装cgal和qt5。然后我在尝试使用qt5时遇到了这个问题。

看起来cmake已经找到了qt,但是CGAL_Qt5_FOUND仍然返回false,我仍然收到消息:注意:示例draw_triangulation_2需要Qt,不会被编译。
环境:操作系统(Windows 10/64位):编译器:使用的visual studio 2019特定标志(如果有):CGAL版本: 5.1 Boost版本: 1.72.0
我怎么才能修复它?
发布于 2020-12-12 12:54:26
我最终解决了这个问题,使用vcpkg install cgal[qt]:x64-windows --recurse而不是vcpkg install cgal:x64-windows重新安装了cgal。
https://stackoverflow.com/questions/65259714
复制相似问题