mirror of
https://github.com/godotengine/godot.git
synced 2025-04-13 01:00:35 +08:00
13 lines
285 B
Python
13 lines
285 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_2d"]:
|
|
SConscript("physics/SCsub")
|
|
if not env["disable_navigation_2d"]:
|
|
SConscript("navigation/SCsub")
|