mirror of
				https://github.com/godotengine/godot.git
				synced 2025-10-31 21:51:22 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			17 lines
		
	
	
	
		
			433 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
	
		
			433 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| #!/usr/bin/env python
 | |
| 
 | |
| Import("env")
 | |
| 
 | |
| import make_wrappers
 | |
| import make_interface_dumper
 | |
| 
 | |
| env.CommandNoCache(["ext_wrappers.gen.inc"], "make_wrappers.py", env.Run(make_wrappers.run))
 | |
| env.CommandNoCache(
 | |
|     "gdextension_interface_dump.gen.h",
 | |
|     ["gdextension_interface.h", "make_interface_dumper.py"],
 | |
|     env.Run(make_interface_dumper.run),
 | |
| )
 | |
| 
 | |
| env_extension = env.Clone()
 | |
| 
 | |
| env_extension.add_source_files(env.core_sources, "*.cpp")
 | 
