summaryrefslogtreecommitdiff
path: root/modules/gdnative/config.py
blob: c067477a1f105b8ea0564be22de76ce0d9b86229 (plain)
1
2
3
4
5
6
7
8
9
10
11
12

def can_build(platform):
    return True

def configure(env):
    env.use_ptrcall = True

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

def get_doc_path():
  return "doc_classes"