godot/modules/SCsub

23 lines
434 B
Plaintext
Raw Normal View History

#!/usr/bin/env python
2016-04-02 20:26:12 +02:00
Import('env')
env_modules = env.Clone()
Export('env_modules')
env.modules_sources = [
"register_module_types.gen.cpp",
2016-04-02 20:26:12 +02: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 20:26:12 +02:00
lib = env_modules.add_library("modules", env.modules_sources)
2016-04-02 20:26:12 +02:00
env.Prepend(LIBS=[lib])