mirror of
				https://github.com/godotengine/godot.git
				synced 2025-11-04 07:31:16 +00:00 
			
		
		
		
	This is still a bit hacky and eventually we should rework the way we handle optional dependencies (especially with regard to builtin/system libs), but it's a simple first step. Fixes #39219.
		
			
				
	
	
		
			6 lines
		
	
	
	
		
			119 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			6 lines
		
	
	
	
		
			119 B
		
	
	
	
		
			Python
		
	
	
	
	
	
def can_build(env, platform):
 | 
						|
    return env.module_check_dependencies("opus", ["ogg"])
 | 
						|
 | 
						|
 | 
						|
def configure(env):
 | 
						|
    pass
 |