File: SCsub

package info (click to toggle)
godot 3.2.3-stable-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye
  • size: 121,308 kB
  • sloc: cpp: 804,285; ansic: 597,434; xml: 77,823; asm: 17,127; cs: 13,535; lisp: 12,017; python: 9,376; java: 7,474; sh: 973; javascript: 659; perl: 264; pascal: 203; objc: 116; makefile: 105
file content (32 lines) | stat: -rw-r--r-- 1,042 bytes parent folder | download | duplicates (2)
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
28
29
30
31
32
#!/usr/bin/env python

from compat import open_utf8

Import("env")

env.platform_sources = []

# Register platform-exclusive APIs
reg_apis_inc = '#include "register_platform_apis.h"\n'
reg_apis = "void register_platform_apis() {\n"
unreg_apis = "void unregister_platform_apis() {\n"
for platform in env.platform_apis:
    platform_dir = env.Dir(platform)
    env.add_source_files(env.platform_sources, platform + "/api/api.cpp")
    reg_apis += "\tregister_" + platform + "_api();\n"
    unreg_apis += "\tunregister_" + platform + "_api();\n"
    reg_apis_inc += '#include "' + platform + '/api/api.h"\n'
reg_apis_inc += "\n"
reg_apis += "}\n\n"
unreg_apis += "}\n"

# NOTE: It is safe to generate this file here, since this is still execute serially
with open_utf8("register_platform_apis.gen.cpp", "w") as f:
    f.write(reg_apis_inc)
    f.write(reg_apis)
    f.write(unreg_apis)

env.add_source_files(env.platform_sources, "register_platform_apis.gen.cpp")

lib = env.add_library("platform", env.platform_sources)
env.Prepend(LIBS=[lib])