mirror of
				https://github.com/godotengine/godot.git
				synced 2025-10-31 13:41:03 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			17 lines
		
	
	
	
		
			363 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
	
		
			363 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| #!/usr/bin/env python
 | |
| 
 | |
| Import("env")
 | |
| 
 | |
| env.servers_sources = []
 | |
| env.add_source_files(env.servers_sources, "*.cpp")
 | |
| 
 | |
| SConscript("xr/SCsub")
 | |
| SConscript("camera/SCsub")
 | |
| SConscript("physics_3d/SCsub")
 | |
| SConscript("physics_2d/SCsub")
 | |
| SConscript("rendering/SCsub")
 | |
| SConscript("audio/SCsub")
 | |
| 
 | |
| lib = env.add_library("servers", env.servers_sources)
 | |
| 
 | |
| env.Prepend(LIBS=[lib])
 | 
