summaryrefslogtreecommitdiffstats
path: root/SConstruct
diff options
context:
space:
mode:
authorGeorge Marques <george@gmarqu.es>2022-12-31 10:59:52 -0300
committerGeorge Marques <george@gmarqu.es>2023-12-15 10:59:26 -0300
commited52ac9b5df5bae8836b309f1d55f928ebc58481 (patch)
treec0f81d36fa4b7e85733920815842ce30336abb21 /SConstruct
parentf8a2a9193662b2e8c1d04d65e647399dee94f31e (diff)
downloadredot-engine-ed52ac9b5df5bae8836b309f1d55f928ebc58481.tar.gz
Add option in SCons to copy environment variables
This allows custom environment variables to be used during the build, which is useful when using alternative compilation tools such as caches and distributed build systems.
Diffstat (limited to 'SConstruct')
-rw-r--r--SConstruct7
1 files changed, 7 insertions, 0 deletions
diff --git a/SConstruct b/SConstruct
index 7ae90272f3..da2f89fbeb 100644
--- a/SConstruct
+++ b/SConstruct
@@ -212,6 +212,7 @@ opts.Add("extra_suffix", "Custom extra suffix added to the base filename of all
opts.Add("object_prefix", "Custom prefix added to the base filename of all generated object files", "")
opts.Add(BoolVariable("vsproj", "Generate a Visual Studio solution", False))
opts.Add("vsproj_name", "Name of the Visual Studio solution", "godot")
+opts.Add("import_env_vars", "A comma-separated list of environment variables to copy from the outer environment.", "")
opts.Add(BoolVariable("disable_3d", "Disable 3D nodes for a smaller executable", False))
opts.Add(BoolVariable("disable_advanced_gui", "Disable advanced GUI nodes and behaviors", False))
opts.Add("build_profile", "Path to a file containing a feature build profile", "")
@@ -270,6 +271,12 @@ opts.Add("LINKFLAGS", "Custom flags for the linker")
# in following code (especially platform and custom_modules).
opts.Update(env_base)
+# Copy custom environment variables if set.
+if env_base["import_env_vars"]:
+ for env_var in str(env_base["import_env_vars"]).split(","):
+ if env_var in os.environ:
+ env_base["ENV"][env_var] = os.environ[env_var]
+
# Platform selection: validate input, and add options.
selected_platform = ""