CMake Deprecation Warning at CMakeLists.txt:1 (cmake_minimum_required): Compatibility with CMake < 2.8.12 will be removed from a future version of CMake. Update the VERSION argument <min> value or use a ...<max> suffix to tell CMake that the project does not need compatibility with older versions.
时间: 2024-03-03 07:47:47 浏览: 466
CMakeLists.txt
这个警告是因为你的`CMakeLists.txt`文件中设置了`cmake_minimum_required`的版本过低,建议将其更新至CMake 2.8.12或更高版本,以避免兼容性问题。你可以将`cmake_minimum_required`设置为如下所示的语句:
```
cmake_minimum_required(VERSION 2.8.12 FATAL_ERROR)
```
这样可以明确告诉CMake,你的项目需要的最低版本是2.8.12,如果使用低于此版本的CMake编译,则会出现错误。如果你确定你的项目不需要向下兼容旧版本的CMake,可以将`cmake_minimum_required`替换为如下所示的语句:
```
cmake_minimum_required(VERSION 3.0 FATAL_ERROR)
```
这样可以确保你的项目不会与CMake 3.0以下的版本兼容。更新后,再次编译项目即可。
阅读全文