Skip to content

Commit 7b5052b

Browse files
committed
Merge branch 'master' into wayland-latest2
2 parents b08aebf + c9d0d75 commit 7b5052b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

INSTALL.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020

2121
* C++17 compliant compiler i.e. g++ 7.3 or later, Clang 6.0 or later, Visual Studio S2017 or later.
2222
* [Vulkan](https://vulkan.lunarg.com/) 1.1 or later. You can use Vulkan (libs and headers) installed from repositories or VulkanSDK.
23-
* [CMake](https://www.cmake.org) 3.7 or later.
23+
* [CMake](https://www.cmake.org) 3.10 or later.
2424

2525
---
2626

@@ -180,7 +180,7 @@ This will also tell CMake that your minimum C++ standard is 17.
180180

181181
For example, a bare minimum CMakeLists.txt file to compile a single file application would be:
182182

183-
cmake_minimum_required(VERSION 3.7)
183+
cmake_minimum_required(VERSION 3.10)
184184
find_package(vsg REQUIRED)
185185
add_executable(myapp "myapp.cpp")
186186
target_link_libraries(myapp vsg::vsg)
@@ -191,7 +191,7 @@ The build system provides macros that create specific cmake targets to use in yo
191191

192192
For example, a bare minimum CMakeLists.txt file adding the mentioned cmake targets would be:
193193

194-
cmake_minimum_required(VERSION 3.7)
194+
cmake_minimum_required(VERSION 3.10)
195195
find_package(vsg REQUIRED)
196196

197197
vsg_setup_dir_vars()

0 commit comments

Comments
 (0)