mirror of
https://github.com/godotengine/godot.git
synced 2025-10-19 16:03:29 +00:00
[Buildsystem] Add EnumVariable(ignorecase=2)
This commit is contained in:
parent
ce94b26de7
commit
1fbc0c5631
4 changed files with 22 additions and 9 deletions
|
@ -30,7 +30,7 @@ def get_opts():
|
|||
from SCons.Variables import BoolVariable, EnumVariable
|
||||
|
||||
return [
|
||||
EnumVariable("linker", "Linker program", "default", ("default", "bfd", "gold", "lld", "mold")),
|
||||
EnumVariable("linker", "Linker program", "default", ["default", "bfd", "gold", "lld", "mold"], ignorecase=2),
|
||||
BoolVariable("use_llvm", "Use the LLVM compiler", False),
|
||||
BoolVariable("use_static_cpp", "Link libgcc and libstdc++ statically for better portability", True),
|
||||
BoolVariable("use_coverage", "Test Godot coverage", False),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue