Skip to content

Commit

Permalink
Merge pull request #1282 from throwaway96/cmake-min-ver-202309
Browse files Browse the repository at this point in the history
Standardize minimum CMake version
  • Loading branch information
uxmal authored Sep 2, 2023
2 parents 9e759e9 + 04b74e1 commit 6334c3b
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
cmake_minimum_required ( VERSION 3.10 FATAL_ERROR )
cmake_minimum_required(VERSION 3.10 FATAL_ERROR)
list(INSERT CMAKE_MODULE_PATH 0 "${CMAKE_SOURCE_DIR}/cmake")
find_package(Dotnet 2.0 REQUIRED)

Expand Down
2 changes: 1 addition & 1 deletion cmake/msbuild2cmake.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
# `TARGET`, which is the name of the target (defined in CMakeLists.txt) to build
#

cmake_minimum_required ( VERSION 3.10 FATAL_ERROR )
cmake_minimum_required(VERSION 3.10 FATAL_ERROR)

function(check_msys output)
execute_process(
Expand Down
2 changes: 1 addition & 1 deletion src/Native/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
cmake_minimum_required(VERSION 3.0 FATAL_ERROR)
cmake_minimum_required(VERSION 3.10 FATAL_ERROR)

project(reko-native)

Expand Down
2 changes: 1 addition & 1 deletion src/Native/reko.cmake
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
cmake_minimum_required ( VERSION 3.10 FATAL_ERROR )
cmake_minimum_required(VERSION 3.10 FATAL_ERROR)
list(INSERT CMAKE_MODULE_PATH 0 "${REKO_SRC}/../cmake")

include(msbuild2cmake)
Expand Down
2 changes: 1 addition & 1 deletion src/reko.cmake
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
cmake_minimum_required ( VERSION 3.10 FATAL_ERROR )
cmake_minimum_required(VERSION 3.10 FATAL_ERROR)
list(INSERT CMAKE_MODULE_PATH 0 "${REKO_SRC}/../cmake")

include(msbuild2cmake)
Expand Down

0 comments on commit 6334c3b

Please sign in to comment.