D:/ZBY/ZBYQT/volbx-master/cmakelists.txt:32: Missing closing parenthesis in function call D:/ZBY/ZBYQT/volbx-master/cmakelists.txt:33: Extra characters after test expression. D:/ZBY/ZBYQT/volbx-master/cmakelists.txt:34: Missing closing parenthesis in function call D:/ZBY/ZBYQT/volbx-master/cmakelists.txt:35: Extra characters after test expression.
时间: 2024-01-31 20:04:13 浏览: 126
leetcode答案-zby-leetcode-python:zby的Python版答案
这个错误提示意味着在你的 CMakeLists.txt 文件中,第32行和34行的某个函数调用中缺少了右括号,同时第33行和35行可能是由于在 if 语句中测试表达式后面添加了多余的字符。你需要检查这些行的代码,确保所有函数调用的语法都正确,没有缺少右括号或者其他语法错误,并且 if 语句的测试表达式正确,没有多余的字符。如果你有疑问,可以将这些行的代码贴出来,我可以帮你分析。
阅读全文