Merge pull request #84191 from akien-mga/scons-gdscript-fix-no-lsp-build

SCons: Fix build with GDScript LSP disabled
This commit is contained in:
Rémi Verschelde 2023-10-31 20:15:53 +01:00
commit 8c7f836c19
No known key found for this signature in database
GPG key ID: C3336907360768E1

View file

@ -19,6 +19,8 @@ if env.editor_build:
# Using a define in the disabled case, to avoid having an extra define
# in regular builds where all modules are enabled.
env_gdscript.Append(CPPDEFINES=["GDSCRIPT_NO_LSP"])
# Also needed in main env to unexpose --lsp-port option.
env.Append(CPPDEFINES=["GDSCRIPT_NO_LSP"])
if env["tests"]: