mirror of
				https://github.com/Ryujinx/SDL.git
				synced 2025-11-04 11:24:55 +00:00 
			
		
		
		
	cmake: update cmake_minimum_required to avoid deprecated warning
This commit is contained in:
		
							parent
							
								
									64f17314a2
								
							
						
					
					
						commit
						e5f3b22d63
					
				
							
								
								
									
										2
									
								
								.github/cmake/CMakeLists.txt
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										2
									
								
								.github/cmake/CMakeLists.txt
									
									
									
									
										vendored
									
									
								
							| 
						 | 
					@ -1,4 +1,4 @@
 | 
				
			||||||
cmake_minimum_required(VERSION 3.0)
 | 
					cmake_minimum_required(VERSION 3.0...3.5)
 | 
				
			||||||
project(ci_utils C CXX)
 | 
					project(ci_utils C CXX)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
set(txt "CC=${CMAKE_C_COMPILER}
 | 
					set(txt "CC=${CMAKE_C_COMPILER}
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
							
								
								
									
										2
									
								
								.github/workflows/msvc.yml
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										2
									
								
								.github/workflows/msvc.yml
									
									
									
									
										vendored
									
									
								
							| 
						 | 
					@ -34,7 +34,7 @@ jobs:
 | 
				
			||||||
        os.makedirs(builddir)
 | 
					        os.makedirs(builddir)
 | 
				
			||||||
        with open(f"{ builddir }/CMakeLists.txt", "w") as f:
 | 
					        with open(f"{ builddir }/CMakeLists.txt", "w") as f:
 | 
				
			||||||
          f.write(textwrap.dedent(f"""\
 | 
					          f.write(textwrap.dedent(f"""\
 | 
				
			||||||
            cmake_minimum_required(VERSION 3.0)
 | 
					            cmake_minimum_required(VERSION 3.0...3.5)
 | 
				
			||||||
            project(sdl_user)
 | 
					            project(sdl_user)
 | 
				
			||||||
            add_subdirectory("{ srcdir }" SDL)
 | 
					            add_subdirectory("{ srcdir }" SDL)
 | 
				
			||||||
          """))
 | 
					          """))
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -1,7 +1,7 @@
 | 
				
			||||||
# SDL2 CMake configuration file:
 | 
					# SDL2 CMake configuration file:
 | 
				
			||||||
# This file is meant to be placed in a cmake subfolder of SDL2-devel-2.x.y-VC
 | 
					# This file is meant to be placed in a cmake subfolder of SDL2-devel-2.x.y-VC
 | 
				
			||||||
 | 
					
 | 
				
			||||||
cmake_minimum_required(VERSION 3.0)
 | 
					cmake_minimum_required(VERSION 3.0...3.5)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
include(FeatureSummary)
 | 
					include(FeatureSummary)
 | 
				
			||||||
set_package_properties(SDL2 PROPERTIES
 | 
					set_package_properties(SDL2 PROPERTIES
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -48,7 +48,7 @@ SDL can be included in your project in 2 major ways:
 | 
				
			||||||
The following CMake script supports both, depending on the value of `MYGAME_VENDORED`.
 | 
					The following CMake script supports both, depending on the value of `MYGAME_VENDORED`.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
```cmake
 | 
					```cmake
 | 
				
			||||||
cmake_minimum_required(VERSION 3.0)
 | 
					cmake_minimum_required(VERSION 3.5)
 | 
				
			||||||
project(mygame)
 | 
					project(mygame)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
# Create an option to switch between a system sdl library and a vendored sdl library
 | 
					# Create an option to switch between a system sdl library and a vendored sdl library
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
		Reference in a new issue