cmake: update cmake_minimum_required to avoid deprecated warning

This commit is contained in:
Anonymous Maarten
2023-08-07 19:03:18 +02:00
parent dbb6cd02aa
commit dbfd47e77d
6 changed files with 6 additions and 6 deletions

View File

@@ -34,7 +34,7 @@ jobs:
os.makedirs(builddir)
with open(f"{ builddir }/CMakeLists.txt", "w") as f:
f.write(textwrap.dedent(f"""\
cmake_minimum_required(VERSION 3.0)
cmake_minimum_required(VERSION 3.0...3.5)
project(sdl_user)
add_subdirectory("{ srcdir }" SDL)
"""))