
cmake
郭老二
没有人不爱惜他的生命,但很少有人珍视他的时间!
展开
-
【Cmake】执行cmake命令时报错:No XSLT processor found
一、问题描述在ubuntu中,在生成Doc(文档)中,执行cmake命令时报错:No XSLT processor found二、原因查找google该错误信息,原因是确实ubuntu中没有安装 xsltproc三、解决方法安装 xsltprocsudo apt install xsltproc四、扩展xsltproc是由DanielVeillard用来C语言编写的是一个快速X...原创 2019-11-18 14:36:08 · 519 阅读 · 0 评论 -
【C++】mingw32-make+cmake:error: ‘nullptr‘ was not declared in this scope解决方法
问题使用cmake成功(Configuring done Generating done)后,在cmd终端中执行 mingw32-make报错:error: 'nullptr' was not declared in this scope原因nullptr是在c++11的新内容。编译时,没有添加对C+11的支持。解决方法在Cmake中选择对CXX11的支持。 错误...原创 2018-03-28 20:21:55 · 5859 阅读 · 0 评论