25개 이상의 토픽을 선택하실 수 없습니다.
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
	
	
		
			
				
				
					
						
						
							| 
								
							 | 
							
								cmake_minimum_required(VERSION 2.6)
							 | 
						
						
						
							| 
								
							 | 
							
								project(light_my_ritual)
							 | 
						
						
						
							| 
								
							 | 
							
								
							 | 
						
						
						
							| 
								
							 | 
							
								# Grab the screens
							 | 
						
						
						
							| 
								
							 | 
							
								file(GLOB screen_sources "screens/*.c")
							 | 
						
						
						
							| 
								
							 | 
							
								
							 | 
						
						
						
							| 
								
							 | 
							
								# Executable & linking
							 | 
						
						
						
							| 
								
							 | 
							
								add_executable(${PROJECT_NAME} ${PROJECT_NAME}.c ${screen_sources})
							 | 
						
						
						
							| 
								
							 | 
							
								if (NOT TARGET raylib)
							 | 
						
						
						
							| 
								
							 | 
							
								  find_package(raylib 2.0 REQUIRED)
							 | 
						
						
						
							| 
								
							 | 
							
								endif()
							 | 
						
						
						
							| 
								
							 | 
							
								target_link_libraries(${PROJECT_NAME} raylib)
							 | 
						
						
						
							| 
								
							 | 
							
								
							 | 
						
						
						
							| 
								
							 | 
							
								# Resources
							 | 
						
						
						
							| 
								
							 | 
							
								# Copy all of the resource files to the destination
							 | 
						
						
						
							| 
								
							 | 
							
								file(COPY "resources/"  DESTINATION "resources/")
							 |