mirror of
https://github.com/godotengine/godot.git
synced 2025-01-06 17:37:18 +08:00
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
|