15 lines
338 B
Python
15 lines
338 B
Python
#!/usr/bin/env python
|
|
from misc.utility.scons_hints import *
|
|
|
|
Import("env")
|
|
|
|
env.add_source_files(env.scene_sources, "*.cpp")
|
|
|
|
# Chain load SCsubs
|
|
if not env["disable_physics_3d"]:
|
|
SConscript("physics/SCsub")
|
|
if not env["disable_navigation_3d"]:
|
|
SConscript("navigation/SCsub")
|
|
if not env["disable_xr"]:
|
|
SConscript("xr/SCsub")
|