diff options
| author | Juan Linietsky | 2015-01-17 09:47:02 -0300 |
|---|---|---|
| committer | Juan Linietsky | 2015-01-17 09:47:02 -0300 |
| commit | 7ac7956baf220118a2a10162d3eebf25c2054980 (patch) | |
| tree | 30b5b56f1a3e17b55bd2fddd18fcbc245a5927c9 /platform/x11/detect.py | |
| parent | 938c6d0df386e59f0ad59f71163fbb9e168e9294 (diff) | |
| parent | 928e068f71afed015bdf6851dad7d4f57f827ef6 (diff) | |
| download | godot-7ac7956baf220118a2a10162d3eebf25c2054980.tar.gz godot-7ac7956baf220118a2a10162d3eebf25c2054980.tar.zst godot-7ac7956baf220118a2a10162d3eebf25c2054980.zip | |
Merge pull request #1188 from hurikhan/scons_colored
Scons colored
Diffstat (limited to 'platform/x11/detect.py')
| -rw-r--r-- | platform/x11/detect.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/platform/x11/detect.py b/platform/x11/detect.py index 8264196a4..5171bc972 100644 --- a/platform/x11/detect.py +++ b/platform/x11/detect.py @@ -82,6 +82,9 @@ def configure(env): env.extra_suffix=".llvms" else: env.extra_suffix=".llvm" + if (env["colored"]=="yes"): + if sys.stdout.isatty(): + env.Append(CXXFLAGS=["-fcolor-diagnostics"]) |
