summaryrefslogtreecommitdiff
path: root/modules/gdnative/config.py
blob: 37e25a46d4b673ae88c793f18013d3c1fd912cb0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
def can_build(env, platform):
    return True


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"