diff options
author | Mike Weiblen <[email protected]> | 2019-07-16 15:10:44 -0600 |
---|---|---|
committer | Mike Weiblen <[email protected]> | 2019-07-16 15:10:44 -0600 |
commit | 5ce5b15b54b127821f00661f6e1da4aed0a9227f (patch) | |
tree | 2472c3510691158a0c60f1b94e961fdfdae4ec59 | |
parent | 737f4c1cd96283747967c2024a0108b742214455 (diff) | |
download | Vulkan-Headers-5ce5b15b54b127821f00661f6e1da4aed0a9227f.tar.gz Vulkan-Headers-5ce5b15b54b127821f00661f6e1da4aed0a9227f.zip |
build: Update cmake_minimum_required(VERSION 3.10.2)
Change-Id: I28c30bb941691738944b13da75bc07e6153c89ef
-rw-r--r-- | BUILD.md | 7 | ||||
-rw-r--r-- | CMakeLists.txt | 2 |
2 files changed, 5 insertions, 4 deletions
@@ -78,7 +78,7 @@ directories and place them in any location. - [2017](https://www.visualstudio.com/vs/downloads/) - The Community Edition of each of the above versions is sufficient, as well as any more capable edition. -- CMake: Continuous integration tools use [CMake 3.12.2](https://github.com/Kitware/CMake/releases/tag/v3.12.2) for Windows +- [CMake 3.10.2](https://cmake.org/files/v3.10/cmake-3.10.2-win64-x64.zip) is recommended. - Use the installer option to add CMake to the system PATH - Git Client Support - [Git for Windows](http://git-scm.com/download/win) is a popular solution @@ -189,7 +189,7 @@ Build the `uninstall` target to remove the files from the install directory. There are no specific Linux distribution or compiler version requirements for building this repository. The required tools are -- CMake: Continuous integration tools use [CMake 3.12.4](https://github.com/Kitware/CMake/releases/tag/v3.12.4) for Linux +- [CMake 3.10.2](https://cmake.org/files/v3.10/cmake-3.10.2-Linux-x86_64.tar.gz) is recommended. - git ### Linux Build @@ -267,4 +267,5 @@ or ## Building on MacOS The instructions for building this repository on MacOS are similar to those for Linux. -- CMake: Continuous integration tools use [CMake 3.11.3](https://github.com/Kitware/CMake/releases/tag/v3.11.3) for MacOS + +[CMake 3.10.2](https://cmake.org/files/v3.10/cmake-3.10.2-Darwin-x86_64.tar.gz) is recommended. diff --git a/CMakeLists.txt b/CMakeLists.txt index 2640891..fc96c5e 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -18,7 +18,7 @@ # CMake project initialization --------------------------------------------------------------------------------------------------- # This section contains pre-project() initialization, and ends with the project() command. -cmake_minimum_required(VERSION 2.8.11) +cmake_minimum_required(VERSION 3.10.2) # NONE = this project has no language toolchain requirement. project(Vulkan-Headers NONE) |