mirror of
				https://github.com/godotengine/godot.git
				synced 2025-11-04 07:31:16 +00:00 
			
		
		
		
	Co-authored-by: Andreia Gaita <shana@spoiledcat.net> Co-authored-by: Rémi Verschelde <rverschelde@gmail.com>
		
			
				
	
	
		
			11 lines
		
	
	
	
		
			218 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
	
		
			218 B
		
	
	
	
		
			Python
		
	
	
	
	
	
# Tuples with the name of the arch
 | 
						|
def get_platforms():
 | 
						|
    return [("x64", "x86_64")]
 | 
						|
 | 
						|
 | 
						|
def get_configurations():
 | 
						|
    return ["editor", "template_debug", "template_release"]
 | 
						|
 | 
						|
 | 
						|
def get_build_prefix(env):
 | 
						|
    return []
 |