mirror of
https://github.com/godotengine/godot.git
synced 2025-10-19 16:03:29 +00:00
Fix 2D debug templates linking
This commit is contained in:
parent
06827c91c6
commit
af404ff584
6 changed files with 18 additions and 17 deletions
|
@ -14,18 +14,11 @@ SConscript("display/SCsub")
|
|||
SConscript("movie_writer/SCsub")
|
||||
SConscript("rendering/SCsub")
|
||||
SConscript("text/SCsub")
|
||||
|
||||
if not env["disable_navigation_2d"]:
|
||||
SConscript("navigation_2d/SCsub")
|
||||
if not env["disable_physics_2d"]:
|
||||
SConscript("physics_2d/SCsub")
|
||||
|
||||
if not env["disable_navigation_3d"]:
|
||||
SConscript("navigation_3d/SCsub")
|
||||
if not env["disable_physics_3d"]:
|
||||
SConscript("physics_3d/SCsub")
|
||||
if not env["disable_xr"]:
|
||||
SConscript("xr/SCsub")
|
||||
SConscript("navigation_2d/SCsub")
|
||||
SConscript("physics_2d/SCsub")
|
||||
SConscript("navigation_3d/SCsub")
|
||||
SConscript("physics_3d/SCsub")
|
||||
SConscript("xr/SCsub")
|
||||
|
||||
lib = env.add_library("servers", env.servers_sources)
|
||||
|
||||
|
|
|
@ -3,4 +3,5 @@ from misc.utility.scons_hints import *
|
|||
|
||||
Import("env")
|
||||
|
||||
env.add_source_files(env.servers_sources, "*.cpp")
|
||||
if not env["disable_navigation_2d"]:
|
||||
env.add_source_files(env.servers_sources, "*.cpp")
|
||||
|
|
|
@ -3,4 +3,8 @@ from misc.utility.scons_hints import *
|
|||
|
||||
Import("env")
|
||||
|
||||
env.add_source_files(env.servers_sources, "*.cpp")
|
||||
if not env["disable_navigation_3d"]:
|
||||
env.add_source_files(env.servers_sources, "*.cpp")
|
||||
else:
|
||||
if env.debug_features:
|
||||
env.add_source_files(env.servers_sources, "navigation_server_3d.cpp")
|
||||
|
|
|
@ -3,4 +3,5 @@ from misc.utility.scons_hints import *
|
|||
|
||||
Import("env")
|
||||
|
||||
env.add_source_files(env.servers_sources, "*.cpp")
|
||||
if not env["disable_physics_2d"]:
|
||||
env.add_source_files(env.servers_sources, "*.cpp")
|
||||
|
|
|
@ -3,4 +3,5 @@ from misc.utility.scons_hints import *
|
|||
|
||||
Import("env")
|
||||
|
||||
env.add_source_files(env.servers_sources, "*.cpp")
|
||||
if not env["disable_physics_3d"]:
|
||||
env.add_source_files(env.servers_sources, "*.cpp")
|
||||
|
|
|
@ -3,4 +3,5 @@ from misc.utility.scons_hints import *
|
|||
|
||||
Import("env")
|
||||
|
||||
env.add_source_files(env.servers_sources, "*.cpp")
|
||||
if not env["disable_xr"]:
|
||||
env.add_source_files(env.servers_sources, "*.cpp")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue