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