| 
				
				
					
						
					
				
				
				 | 
			
			 | 
			
			@ -2,7 +2,7 @@ cmake_minimum_required(VERSION 3.11) # FetchContent is available in 3.11+ | 
			
		
		
	
		
			
			 | 
			 | 
			
			 | 
			
			project(example) | 
			
		
		
	
		
			
			 | 
			 | 
			
			 | 
			
			
 | 
			
		
		
	
		
			
			 | 
			 | 
			
			 | 
			
			# Set this to the minimal version you want to support | 
			
		
		
	
		
			
			 | 
			 | 
			
			 | 
			
			find_package(raylib 2.5 QUIET) # Let CMake search for a raylib-config.cmake | 
			
		
		
	
		
			
			 | 
			 | 
			
			 | 
			
			find_package(raylib 3.0 QUIET) # Let CMake search for a raylib-config.cmake | 
			
		
		
	
		
			
			 | 
			 | 
			
			 | 
			
			
 | 
			
		
		
	
		
			
			 | 
			 | 
			
			 | 
			
			# You could change the QUIET above to REQUIRED and remove this if() clause | 
			
		
		
	
		
			
			 | 
			 | 
			
			 | 
			
			# This part downloads raylib and builds it if it's not installed on your system | 
			
		
		
	
	
		
			
				| 
				
				
				
					
						
					
				
				 | 
			
			 | 
			
			@ -20,7 +20,6 @@ if (NOT raylib_FOUND) # If there's none, fetch and build raylib | 
			
		
		
	
		
			
			 | 
			 | 
			
			 | 
			
			    FetchContent_Populate(raylib) | 
			
		
		
	
		
			
			 | 
			 | 
			
			 | 
			
			
 | 
			
		
		
	
		
			
			 | 
			 | 
			
			 | 
			
			    set(BUILD_EXAMPLES OFF CACHE BOOL "" FORCE) # don't build the supplied examples | 
			
		
		
	
		
			
			 | 
			 | 
			
			 | 
			
			    set(BUILD_GAMES    OFF CACHE BOOL "" FORCE) # or games | 
			
		
		
	
		
			
			 | 
			 | 
			
			 | 
			
			
 | 
			
		
		
	
		
			
			 | 
			 | 
			
			 | 
			
			    # build raylib | 
			
		
		
	
		
			
			 | 
			 | 
			
			 | 
			
			    add_subdirectory(${raylib_SOURCE_DIR} ${raylib_BINARY_DIR}) | 
			
		
		
	
	
		
			
				| 
				
					
						
					
				
				
				
				 | 
			
			 | 
			
			
 |