mirror of
				https://github.com/godotengine/godot.git
				synced 2025-10-31 13:41:03 +00:00 
			
		
		
		
	 b1d15c51bc
			
		
	
	
		b1d15c51bc
		
	
	
	
	
		
			
			* Deprecates GDNative in favor of a simpler, lower level interface. * New extension system allows registering core engine classes. * Simple header interface in gdnative_interace.h
		
			
				
	
	
		
			12 lines
		
	
	
	
		
			289 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
	
		
			289 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| #!/usr/bin/env python
 | |
| 
 | |
| Import("env")
 | |
| 
 | |
| import make_virtuals
 | |
| from platform_methods import run_in_subprocess
 | |
| 
 | |
| env.CommandNoCache(["gdvirtual.gen.inc"], "make_virtuals.py", run_in_subprocess(make_virtuals.run))
 | |
| 
 | |
| env_object = env.Clone()
 | |
| 
 | |
| env_object.add_source_files(env.core_sources, "*.cpp")
 |