mirror of
https://github.com/wesnoth/wesnoth
synced 2025-04-16 08:20:42 +00:00
10 lines
255 B
Python
10 lines
255 B
Python
# vi: syntax=python:et:ts=4
|
|
from SCons.Script import *
|
|
|
|
def init_metasconf(env, modules):
|
|
modules = map(__import__, modules)
|
|
config_checks = {}
|
|
for module in modules:
|
|
config_checks.update(module.config_checks)
|
|
return config_checks
|