blob: d659be1d99bde4bd0bd65f57ae886cedac858b1b (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#!/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
|