mirror of
https://github.com/godotengine/godot
synced 2024-11-02 10:25:48 +00:00
ea6cc3e260
Co-authored-by: Marcelo Fernandez <marcelofg55@gmail.com> Co-authored-by: James Westman <flyingpimonster@gmail.commail> Co-authored-by: MisterMX <mbxd12@web.de> Signed-off-by: MisterMX <mbxd12@web.de>
17 lines
220 B
Python
17 lines
220 B
Python
def can_build(env, platform):
|
|
return env["minizip"]
|
|
|
|
|
|
def configure(env):
|
|
pass
|
|
|
|
|
|
def get_doc_classes():
|
|
return [
|
|
"ZIPReader",
|
|
"ZIPPacker",
|
|
]
|
|
|
|
|
|
def get_doc_path():
|
|
return "doc_classes"
|