Skip to content

Commit

Permalink
CMake: remove max version allowed
Browse files Browse the repository at this point in the history
Its not that useful and it breaks our ci
  • Loading branch information
tmontaigu committed Jun 17, 2024
1 parent 23f321d commit 13e7471
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 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.15..3.27)
cmake_minimum_required(VERSION 3.15)

include(cmake/Helpers.cmake)
include(cmake/CompilerWarnings.cmake)
Expand Down
2 changes: 1 addition & 1 deletion wrapper/cccorelib/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
cmake_minimum_required(VERSION 3.15..3.27)
cmake_minimum_required(VERSION 3.15)
project(pycccorelib LANGUAGES CXX)

include("${CMAKE_CURRENT_LIST_DIR}/../../cmake/Helpers.cmake")
Expand Down
2 changes: 1 addition & 1 deletion wrapper/pycc/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
cmake_minimum_required(VERSION 3.15..3.27)
cmake_minimum_required(VERSION 3.15)
project(pycc LANGUAGES CXX)

include("${CMAKE_CURRENT_LIST_DIR}/../../cmake/Helpers.cmake")
Expand Down

0 comments on commit 13e7471

Please sign in to comment.