diff options
author | bruvzg <7645683+bruvzg@users.noreply.github.com> | 2019-07-12 16:18:30 +0300 |
---|---|---|
committer | bruvzg <7645683+bruvzg@users.noreply.github.com> | 2020-02-11 11:57:34 +0100 |
commit | b456bfad5cee3922f55621bf7c133cc67337636a (patch) | |
tree | d3c77c49894591ea67dac3ad1551e9f36206b9c1 /SConstruct | |
parent | eb48be51dbe97aa4fbbbe0d0ebd8a98bee6b263e (diff) |
Add runtime GLES2 / Vulkan context selection.
Diffstat (limited to 'SConstruct')
-rw-r--r-- | SConstruct | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/SConstruct b/SConstruct index be93d73b6d..dfa60cda71 100644 --- a/SConstruct +++ b/SConstruct @@ -112,8 +112,6 @@ opts.Add('platform', "Target platform (%s)" % ('|'.join(platform_list), ), '') opts.Add(EnumVariable('target', "Compilation target", 'debug', ('debug', 'release_debug', 'release'))) opts.Add(EnumVariable('optimize', "Optimization type", 'speed', ('speed', 'size'))) -opts.Add(EnumVariable('renderer', "Renderer type", 'vulkan', ('vulkan', 'opengl'))) - opts.Add(BoolVariable('tools', "Build the tools (a.k.a. the Godot editor)", True)) opts.Add(BoolVariable('use_lto', 'Use link-time optimization', False)) opts.Add(BoolVariable('use_precise_math_checks', 'Math checks use very precise epsilon (useful to debug the engine)', False)) |