2020-03-02 06:14:37 +08:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
2020-03-30 14:28:32 +08:00
|
|
|
Import("env")
|
2020-03-02 06:14:37 +08:00
|
|
|
|
|
|
|
import input_builders
|
|
|
|
|
|
|
|
|
|
|
|
# Order matters here. Higher index controller database files write on top of lower index database files.
|
2020-03-30 14:28:32 +08:00
|
|
|
controller_databases = [
|
2021-10-16 03:59:11 +08:00
|
|
|
"gamecontrollerdb.txt",
|
|
|
|
"godotcontrollerdb.txt",
|
2020-03-30 14:28:32 +08:00
|
|
|
]
|
2020-03-02 06:14:37 +08:00
|
|
|
|
2021-10-16 03:59:11 +08:00
|
|
|
gensource = env.CommandNoCache(
|
|
|
|
"default_controller_mappings.gen.cpp",
|
2020-03-30 14:28:32 +08:00
|
|
|
controller_databases,
|
2020-07-28 02:00:26 +08:00
|
|
|
env.Run(input_builders.make_default_controller_mappings, "Generating default controller mappings."),
|
2020-03-30 14:28:32 +08:00
|
|
|
)
|
2020-03-02 06:14:37 +08:00
|
|
|
|
|
|
|
env.add_source_files(env.core_sources, "*.cpp")
|
2021-10-16 03:59:11 +08:00
|
|
|
env.add_source_files(env.core_sources, gensource)
|