我被告知我需要使用CMake 3.5版本,但我只能找到3.27,在CMake的GitHub上最新版本是3.27,在他们的网站上最新版本是3.26。我可以找到CMake 3.5的发行说明,但没有代码。在windows机器上会影响这一点吗?我知道这可能是一个微不足道的问题,但我不明白这一点。
xt0899hw1#
|链接|Link|| --| ------------ || https://cmake.org/files| https://cmake.org/files || https://github.com/Kitware/CMake/releases的| https://github.com/Kitware/CMake/releases |公司简介所以对于CMake 3.5 => https://cmake.org/files/v3.5/
qyyhg6bp2#
如果你正在查看一个CMake项目的cmake_minimum_required调用,它显示为cmake_minimum_required(VERSION 3.5),这意味着你应该能够使用等于或大于3.5的版本。话虽如此,如果你想安装过去版本的CMake,the downloads page很清楚你可以在哪里得到它们。“Alternative Binary Releases”部分指向https://apt.kitware.com/、https://snapcraft.io/cmake和https://pypi.org/project/cmake/。“旧版本”部分指向https://cmake.org/files和https://github.com/Kitware/CMake/releases。
cmake_minimum_required
cmake_minimum_required(VERSION 3.5)
2条答案
按热度按时间xt0899hw1#
旧版本
|链接|Link|
| --| ------------ |
| https://cmake.org/files| https://cmake.org/files |
| https://github.com/Kitware/CMake/releases的| https://github.com/Kitware/CMake/releases |
公司简介
所以对于CMake 3.5 => https://cmake.org/files/v3.5/
qyyhg6bp2#
如果你正在查看一个CMake项目的
cmake_minimum_required
调用,它显示为cmake_minimum_required(VERSION 3.5)
,这意味着你应该能够使用等于或大于3.5的版本。话虽如此,如果你想安装过去版本的CMake,the downloads page很清楚你可以在哪里得到它们。“Alternative Binary Releases”部分指向https://apt.kitware.com/、https://snapcraft.io/cmake和https://pypi.org/project/cmake/。“旧版本”部分指向https://cmake.org/files和https://github.com/Kitware/CMake/releases。