CLion中配置LeetCode插件时Cmake报错

CLion中配置LeetCode插件时Cmake报错,第1张

下载LeetCode Editor 和 C/C++ Single File Execution后

如此配置CodeFileName模板:

CMakeList.txt:

 但是会报错:

CMake Error at CMakeLists.txt:8 (add_executable):
  The target name "[1]-two-sum" is reserved or not valid for certain CMake
  features, such as generator expressions, and may result in undefined
  behavior.

解决方法:

看了很多类似错误的原因都是add_executable括号中的问题,于是我将题目模板的特殊字符去掉了,之后就没有报错了。

修改CodeFileName模板:去掉"["和"]".

CodeFileName:

${question.frontendQuestionId}-${question.titleSlug}

CMakeList.txt:

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/langs/707122.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-04-24
下一篇 2022-04-24

发表评论

登录后才能评论

评论列表(0条)

保存