diff options
| author | Michael Alexsander Silva Dias | 2018-02-14 12:20:58 -0200 |
|---|---|---|
| committer | Hein-Pieter van Braam | 2018-02-19 22:23:38 +0100 |
| commit | 02e910275cb5fefba047e776b8944ea3e2d9907e (patch) | |
| tree | 71c8937fbc23b3b25cecd1aac644278798b5d469 /SConstruct | |
| parent | 285f47f0373c3dba4ed8dd7ce5ad3b602d2b8cb4 (diff) | |
| download | godot-02e910275cb5fefba047e776b8944ea3e2d9907e.tar.gz godot-02e910275cb5fefba047e776b8944ea3e2d9907e.tar.zst godot-02e910275cb5fefba047e776b8944ea3e2d9907e.zip | |
Fixed small typos in the SConstruct file.
(cherry picked from commit b92c5669de589a1e785b9f29b37c4d963f6fc460)
Diffstat (limited to '')
| -rw-r--r-- | SConstruct | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/SConstruct b/SConstruct index f71c6a397..999eadee9 100644 --- a/SConstruct +++ b/SConstruct @@ -161,11 +161,11 @@ opts.Add(BoolVariable('xml', "XML format support for resources", True)) # Advanced options opts.Add(BoolVariable('disable_3d', "Disable 3D nodes for smaller executable", False)) -opts.Add(BoolVariable('disable_advanced_gui', "Disable advance 3D gui nodes and behaviors", False)) +opts.Add(BoolVariable('disable_advanced_gui', "Disable advanced 3D gui nodes and behaviors", False)) opts.Add('extra_suffix', "Custom extra suffix added to the base filename of all generated binary files", '') opts.Add('unix_global_settings_path', "UNIX-specific path to system-wide settings. Currently only used for templates", '') opts.Add(BoolVariable('verbose', "Enable verbose output for the compilation", False)) -opts.Add(BoolVariable('vsproj', "Generate Visual Studio Project.", False)) +opts.Add(BoolVariable('vsproj', "Generate Visual Studio Project", False)) opts.Add(EnumVariable('warnings', "Set the level of warnings emitted during compilation", 'no', ('extra', 'all', 'moderate', 'no'))) opts.Add(BoolVariable('progress', "Show a progress indicator during build", True)) opts.Add(BoolVariable('dev', "If yes, alias for verbose=yes warnings=all", False)) |
