9f33134c93
-Detect when free() might crash the project and throw error -fixed 2D Bounce in physics (3d still broken) -renamed “on_top” property to “behind_parent”, which makes more sense, old on_top remains there for compatibility but is invisible. -large amount of fixes
23 lines
489 B
Text
23 lines
489 B
Text
Import('env')
|
|
|
|
env_modules = env.Clone()
|
|
|
|
Export('env_modules')
|
|
|
|
env.modules_sources=[
|
|
"register_module_types.cpp",
|
|
]
|
|
#env.add_source_files(env.modules_sources,"*.cpp")
|
|
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")
|
|
|
|
lib = env_modules.Library("modules",env.modules_sources, LIBSUFFIX=env['platform_libsuffix'])
|
|
|
|
env.Prepend(LIBS=[lib])
|
|
|
|
|