mirror of
https://github.com/godotengine/godot
synced 2024-11-02 11:59:10 +00:00
066ca97690
Adds SCons options to disable Brotli and Graphite. Adds option categories to the build profiles editor. Adds options default state to the build profiles editor. Adds Text Server related options to the build profiles editor. Fix misplaced OpenGL/Vulkan SCons options.
14 lines
260 B
Python
14 lines
260 B
Python
def can_build(env, platform):
|
|
return True
|
|
|
|
|
|
def get_opts(platform):
|
|
from SCons.Variables import BoolVariable
|
|
|
|
return [
|
|
BoolVariable("brotli", "Enable Brotli decompressor for WOFF2 fonts support", True),
|
|
]
|
|
|
|
|
|
def configure(env):
|
|
pass
|