mirror of
https://github.com/godotengine/godot.git
synced 2024-11-27 09:16:35 +08:00
18 lines
220 B
Python
18 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"
|