{cmake} Fix deprecation warning by updating min version to 3.5

With CMake 3.27, we get a deprecation warning:

"Compatibility with CMake < 3.5 will be removed from a future version of CMake.
Update the VERSION argument <min> value or use a ...<max> suffix to tell
CMake that the project does not need compatibility with older versions."

Bump min version to 3.5 to remove warning.
This commit is contained in:
Andy Maloney 2023-07-19 09:20:14 -04:00
parent f75dc6dd10
commit b047f46e2c

View File

@ -1,4 +1,4 @@
cmake_minimum_required(VERSION 3.4)
cmake_minimum_required(VERSION 3.5)
# Policy configuration; this *MUST* be specified before project is defined
if(POLICY CMP0091)