You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-04 12:00:25 +00:00
19 lines
396 B
Python
19 lines
396 B
Python
def can_build(env, platform):
|
|
return env.editor_build or env["cvtt_export_templates"]
|
|
|
|
|
|
def get_opts(platform):
|
|
from SCons.Variables import BoolVariable
|
|
|
|
return [
|
|
BoolVariable(
|
|
"cvtt_export_templates",
|
|
"Enable CVTT image compression in export template builds (increases binary size)",
|
|
False,
|
|
),
|
|
]
|
|
|
|
|
|
def configure(env):
|
|
pass
|