Update CMake file to CMake version 3.5

Fixed this deprecation warning:
``
CMake Deprecation Warning at CMakeLists.txt:1 (CMAKE_MINIMUM_REQUIRED):
Compatibility with CMake < 3.5 will be removed from a future version of CMake.
``
This commit is contained in:
Sergey Kosarevsky 2024-11-03 22:40:50 -08:00
parent 42629f7442
commit ddfe2e7f86

View file

@ -1,4 +1,4 @@
CMAKE_MINIMUM_REQUIRED(VERSION 3.0)
CMAKE_MINIMUM_REQUIRED(VERSION 3.5)
PROJECT(fast_obj)