소스 검색

SCons: Fix build with GDScript LSP disabled

Fixes #83947.
Rémi Verschelde 1 년 전
부모
커밋
bfd7a50036
1개의 변경된 파일2개의 추가작업 그리고 0개의 파일을 삭제
  1. 2 0
      modules/gdscript/SCsub

+ 2 - 0
modules/gdscript/SCsub

@@ -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"]: