mirror of
https://github.com/godotengine/godot.git
synced 2025-10-19 07:53:26 +00:00
Merge pull request #111242 from WhalesState/2d-link
Fix 2D debug templates linking
This commit is contained in:
commit
91ad968557
6 changed files with 18 additions and 17 deletions
|
@ -14,18 +14,11 @@ SConscript("display/SCsub")
|
||||||
SConscript("movie_writer/SCsub")
|
SConscript("movie_writer/SCsub")
|
||||||
SConscript("rendering/SCsub")
|
SConscript("rendering/SCsub")
|
||||||
SConscript("text/SCsub")
|
SConscript("text/SCsub")
|
||||||
|
SConscript("navigation_2d/SCsub")
|
||||||
if not env["disable_navigation_2d"]:
|
SConscript("physics_2d/SCsub")
|
||||||
SConscript("navigation_2d/SCsub")
|
SConscript("navigation_3d/SCsub")
|
||||||
if not env["disable_physics_2d"]:
|
SConscript("physics_3d/SCsub")
|
||||||
SConscript("physics_2d/SCsub")
|
SConscript("xr/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")
|
|
||||||
|
|
||||||
lib = env.add_library("servers", env.servers_sources)
|
lib = env.add_library("servers", env.servers_sources)
|
||||||
|
|
||||||
|
|
|
@ -3,4 +3,5 @@ from misc.utility.scons_hints import *
|
||||||
|
|
||||||
Import("env")
|
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")
|
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")
|
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")
|
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")
|
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