godot/modules/gdnative/config.py

28 lines
542 B
Python
Raw Normal View History

def can_build(env, platform):
return True
2016-06-26 16:02:15 +02:00
2016-06-26 16:02:15 +02:00
def configure(env):
env.use_ptrcall = True
def get_doc_classes():
return [
"@NativeScript",
"ARVRInterfaceGDNative",
"GDNative",
"GDNativeLibrary",
"MultiplayerPeerGDNative",
"NativeScript",
"PacketPeerGDNative",
"PluginScript",
"StreamPeerGDNative",
"VideoStreamGDNative",
"WebRTCPeerConnectionGDNative",
"WebRTCDataChannelGDNative",
]
def get_doc_path():
return "doc_classes"