godot/modules/SCsub

27 lines
523 B
Plaintext
Raw Normal View History

#!/usr/bin/env python
2016-04-02 18:26:12 +00:00
Import('env')
env_modules = env.Clone()
Export('env_modules')
env.modules_sources = [
"register_module_types.gen.cpp",
2016-04-02 18:26:12 +00:00
]
Export('env')
for x in env.module_list:
if (x in env.disabled_modules):
continue
env_modules.Append(CPPFLAGS=["-DMODULE_" + x.upper() + "_ENABLED"])
SConscript(x + "/SCsub")
2016-04-02 18:26:12 +00:00
2018-01-19 00:26:04 +00:00
if env.split_modules:
env.split_lib("modules", env_lib = env_modules)
2018-01-19 00:26:04 +00:00
else:
2016-04-02 18:26:12 +00:00
2018-01-19 00:35:02 +00:00
lib = env_modules.add_library("modules", env.modules_sources)
env.Prepend(LIBS=[lib])