diff options
author | RĂ©mi Verschelde <rverschelde@gmail.com> | 2022-09-19 15:11:05 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-09-19 15:11:05 +0200 |
commit | bef1fa091c5f801dbd1abcb750b9f5c55c7c3822 (patch) | |
tree | 5ff974eef998ea747dbdc0331188ab2ce282af3f /SConstruct | |
parent | 0b87aaa74c5d8b27852e61c1d26699055f87c964 (diff) | |
parent | 2bf983e6382f5236948f7740faf130a3568f9dd0 (diff) | |
download | redot-cpp-bef1fa091c5f801dbd1abcb750b9f5c55c7c3822.tar.gz |
Merge pull request #835 from Faless/build/4.x_opt_debug
Diffstat (limited to 'SConstruct')
-rw-r--r-- | SConstruct | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -102,6 +102,10 @@ architecture_aliases = { } opts.Add(EnumVariable("arch", "CPU architecture", "", architecture_array, architecture_aliases)) +# Targets flags tool (optimizations, debug symbols) +target_tool = Tool("targets", toolpath=["tools"]) +target_tool.options(opts) + opts.Update(env) Help(opts.GenerateHelpText(env)) @@ -135,6 +139,7 @@ if tool is None or not tool.exists(env): raise ValueError("Required toolchain not found for platform " + env["platform"]) tool.generate(env) +target_tool.generate(env) # Detect and print a warning listing unknown SCons variables to ease troubleshooting. unknown = opts.UnknownVariables() |