Link error with libCGAL-vc120-mt-sgd-4.5.1.lib and cant seem to find or build it

大憨熊 提交于 2019-12-04 19:46:47

The naming libCGAL-vc120-mt-sgd-4.5.1.lib shows that you are compiling a program, that uses CGAL, using the linker flag /MTd (Debug, and link the C++ runtime statically).

The CMake scripts of CGAL do not support linking with the static runtime. They only support /MD or /MDd. I suggest you change that linker flag in your setup.

Alternately, you can try to change the CMake scripts of CGAL, but I do not recommend that solution.

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