broken_seals_module/SCsub

34 lines
810 B
Plaintext
Raw Normal View History

2020-05-23 20:25:01 +02:00
import os
Import('env')
module_env = env.Clone()
2021-04-19 10:13:14 +02:00
if os.path.isdir('../voxelman'):
module_env.Append(CPPDEFINES=['VOXELMAN_PRESENT'])
if os.path.isdir('../terraman'):
module_env.Append(CPPDEFINES=['TERRAMAN_PRESENT'])
2020-05-23 20:25:01 +02:00
sources = [
"register_types.cpp",
"biome_terrarin_generator.cpp",
"t_mesh_instance.cpp"
2020-05-23 20:25:01 +02:00
]
if ARGUMENTS.get('custom_modules_shared', 'no') == 'yes':
# Shared lib compilation
module_env.Append(CCFLAGS=['-fPIC'])
module_env['LIBS'] = []
shared_lib = module_env.SharedLibrary(target='#bin/broken_seals_module', source=sources)
shared_lib_shim = shared_lib[0].name.rsplit('.', 1)[0]
env.Append(LIBS=[shared_lib_shim])
env.Append(LIBPATH=['#bin'])
else:
# Static compilation
module_env.add_source_files(env.modules_sources, sources)