mirror of
				https://github.com/godotengine/godot.git
				synced 2025-10-31 13:41:03 +00:00 
			
		
		
		
	 439d439321
			
		
	
	
		439d439321
		
	
	
	
	
		
			
			Re-wrote nrex as a module using godot-specific parts and new features: * Added string substitutions. * Named groups are now supported. * Removed use of mutable variables in RegEx. RegExMatch is returned instead.
		
			
				
	
	
		
			8 lines
		
	
	
	
		
			95 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			8 lines
		
	
	
	
		
			95 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| #!/usr/bin/env python
 | |
| 
 | |
| def can_build(platform):
 | |
|     return True
 | |
| 
 | |
| def configure(env):
 | |
|     pass
 | |
| 
 |