Skip to content

Commit

Permalink
feat(build): Improve compatibility with modern CMake
Browse files Browse the repository at this point in the history
Current CMake releases are deprecating CMake < 3.10 support. Bump the
cmake_minimum_required() MAX argument for that.
  • Loading branch information
dwatteau committed Jan 12, 2025
1 parent 27cff2b commit c4e874b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# SPDX-License-Identifier: MIT

cmake_minimum_required(VERSION 3.3...3.5 FATAL_ERROR)
cmake_minimum_required(VERSION 3.3...3.10 FATAL_ERROR)

# Don't hardcode /W3 by default for MSVC
if(NOT CMAKE_VERSION VERSION_LESS 3.15)
Expand Down
2 changes: 1 addition & 1 deletion COPYING
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
MIT License

Copyright (c) 2003-2006 Thomas Combeleran (original author)
Copyright (c) 2020-2024 Donovan Watteau (maintainer)
Copyright (c) 2020-2025 Donovan Watteau (maintainer)

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down

0 comments on commit c4e874b

Please sign in to comment.