Skip to content

Commit

Permalink
feat(cmake): Update the CMake minimum version required
Browse files Browse the repository at this point in the history
Namely, to use the presets features we want
  • Loading branch information
RichieSams committed Oct 30, 2023
1 parent 2e67521 commit b6eac95
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
# limitations under the License.
##

cmake_minimum_required(VERSION 3.9)
cmake_minimum_required(VERSION 3.25)
project(FiberTaskingLib CXX)

# Options
Expand Down
3 changes: 1 addition & 2 deletions CMakePresets.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,7 @@
"version": 4,
"cmakeMinimumRequired": {
"major": 3,
"minor": 19,
"patch": 2
"minor": 25
},
"configurePresets": [
{
Expand Down
2 changes: 1 addition & 1 deletion third_party/boost_context/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
## (See accompanying file LICENSE_1_0.txt or copy at
## http://www.boost.org/LICENSE_1_0.txt)

cmake_minimum_required(VERSION 3.2)
cmake_minimum_required(VERSION 3.25)
project(boost_context ASM)


Expand Down

0 comments on commit b6eac95

Please sign in to comment.