Compare commits

...

4 commits
v1.3 ... master

Author SHA1 Message Date
Richard Knight
9884aa86b0
Merge pull request #51 from corporateshark/master
Update CMake file to CMake version `3.5...3.31`
2024-12-10 08:53:05 +00:00
Sergey Kosarevsky
fce8123891 Update CMake file to CMake version 3.5...3.31
This approach allows us to maintain compatibility with the minimum supported CMake version 3.5,
while suppressing all policy warnings up to the latest version 3.31.
2024-12-06 16:46:51 -08:00
Richard Knight
8145eb0a94
Merge pull request #50 from corporateshark/master
Update CMake file to CMake version 3.5
2024-11-19 20:38:52 +00:00
Sergey Kosarevsky
ddfe2e7f86 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.
``
2024-11-03 22:40:54 -08:00

View file

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