forked from hertog/godot-module-template
		
	
		
			
				
	
	
		
			12 lines
		
	
	
		
			199 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			199 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| #!/usr/bin/env python
 | |
| from misc.utility.scons_hints import *
 | |
| 
 | |
| Import("env")
 | |
| Import("env_openxr")
 | |
| 
 | |
| module_obj = []
 | |
| 
 | |
| env_openxr.add_source_files(module_obj, "*.cpp")
 | |
| 
 | |
| env.modules_sources += module_obj
 | 
