CMake Error at CMakeLists.txt:3 (project): No CMAKE_CXX_COMPILER could be found. Tell CMake where to find the compiler by setting either the environment variable "CXX" or the CMake cache entry CMAKE_CXX_COMPILER to the full path to the compiler, or to the compiler name if it is in the PATH.
时间: 2023-06-20 16:05:13 浏览: 449
CMakeLists.txt
这个错误提示是因为 CMake 找不到 C++ 编译器。你需要安装 C++ 编译器(例如 g++),然后将其添加到环境变量 PATH 中。
如果已经安装了 C++ 编译器,可以尝试手动设置 CMake 的编译器路径。可以通过以下方式在 CMakeLists.txt 文件中添加:
```cmake
set(CMAKE_CXX_COMPILER "/path/to/g++")
```
将 `/path/to/g++` 替换为实际的编译器路径,然后重新运行 CMake。
阅读全文