mirror of
https://github.com/Relintai/gdnative.git
synced 2024-11-14 04:57:22 +01:00
24 lines
407 B
Python
24 lines
407 B
Python
|
def can_build(env, platform):
|
||
|
return True
|
||
|
|
||
|
|
||
|
def configure(env):
|
||
|
env.use_ptrcall = True
|
||
|
|
||
|
|
||
|
def get_doc_classes():
|
||
|
return [
|
||
|
"GDNative",
|
||
|
"GDNativeLibrary",
|
||
|
"MultiplayerPeerGDNative",
|
||
|
"NativeScript",
|
||
|
"PacketPeerGDNative",
|
||
|
"PluginScript",
|
||
|
"StreamPeerGDNative",
|
||
|
"VideoStreamGDNative",
|
||
|
]
|
||
|
|
||
|
|
||
|
def get_doc_path():
|
||
|
return "doc_classes"
|