2020-03-01 22:14:37 +00:00
|
|
|
#!/usr/bin/env python
|
2024-06-11 20:19:07 +00:00
|
|
|
from misc.utility.scons_hints import *
|
2020-03-01 22:14:37 +00:00
|
|
|
|
2020-03-30 06:28:32 +00:00
|
|
|
Import("env")
|
2020-03-01 22:14:37 +00:00
|
|
|
|
|
|
|
import input_builders
|
|
|
|
|
|
|
|
# Order matters here. Higher index controller database files write on top of lower index database files.
|
2020-03-30 06:28:32 +00:00
|
|
|
controller_databases = [
|
2021-10-15 19:59:11 +00:00
|
|
|
"gamecontrollerdb.txt",
|
|
|
|
"godotcontrollerdb.txt",
|
2020-03-30 06:28:32 +00:00
|
|
|
]
|
2020-03-01 22:14:37 +00:00
|
|
|
|
2021-10-15 19:59:11 +00:00
|
|
|
gensource = env.CommandNoCache(
|
|
|
|
"default_controller_mappings.gen.cpp",
|
2020-03-30 06:28:32 +00:00
|
|
|
controller_databases,
|
2023-11-20 20:31:56 +00:00
|
|
|
env.Run(input_builders.make_default_controller_mappings),
|
2020-03-30 06:28:32 +00:00
|
|
|
)
|
2020-03-01 22:14:37 +00:00
|
|
|
|
|
|
|
env.add_source_files(env.core_sources, "*.cpp")
|
2021-10-15 19:59:11 +00:00
|
|
|
env.add_source_files(env.core_sources, gensource)
|