File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 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
181181For 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
192192For 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()
You can’t perform that action at this time.
0 commit comments