summaryrefslogtreecommitdiff
path: root/modules/gdnative/config.py
blob: 68148c4d87adf669a76c74628504d78d12bfc8a6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
def can_build(platform):
    return True

def configure(env):
    env.use_ptrcall = True

def get_doc_classes():
    return [
        "ARVRInterfaceGDNative",
        "GDNative",
        "GDNativeLibrary",
        "NativeScript",
        "PluginScript",
    ]

def get_doc_path():
    return "doc_classes"