CMake has dropped compatibility with versions earlier than 3.5. Update the
minimum required version in CMakeLists.txt to ensure compatibility with
newer CMake releases and avoid configuration errors.
Link: https://github.com/openwrt/firmware-utils/pull/48
Signed-off-by: Nick Hainke <vincent@systemli.org>
-CMAKE_MINIMUM_REQUIRED(VERSION 3.0)
+CMAKE_MINIMUM_REQUIRED(VERSION 3.5)
PROJECT(firmware-utils C)
INCLUDE(GNUInstallDirs)