cmake 编译 Cannot specify compile options for target "" which is not built by this project.
时间: 2024-02-16 15:05:20 浏览: 151
这个错误通常是由于在CMakeLists.txt文件中没有正确定义目标项目导致的。请检查您的CMakeLists.txt文件,确保您已正确设置目标项目。您可以通过在CMakeLists.txt文件中使用`add_executable`或`add_library`命令来定义目标项目。例如,如果您想要添加一个可执行文件,您可以使用以下命令:
```
add_executable(my_executable main.cpp)
```
如果您确认已正确定义了目标项目,则可能是由于其他因素引起的问题。请提供更多上下文和详细信息,以便我能够更好地帮助您解决问题。
阅读全文