We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents e6064f7 + b503db1 commit b523f61Copy full SHA for b523f61
SConstruct
@@ -9,8 +9,11 @@ godot_bin_path = "../godot_fork/bin/"
9
# for windows
10
godot_lib_path = "../godot_fork/bin/"
11
12
-
+# This makes sure to keep the session environment variables on windows,
13
+# that way you can run scons in a vs 2017 prompt and it will find all the required tools
14
env = Environment()
15
+if platform == "windows":
16
+ env = Environment(ENV = os.environ)
17
18
if ARGUMENTS.get("use_llvm", "no") == "yes":
19
env["CXX"] = "clang++"
0 commit comments