godot-lportal/SCsub
lawnjelly f02b5f42d6
Add files via upload
Work in progress, conversion spatials to rooms / portals
2019-09-11 08:09:36 +01:00

25 lines
654 B
Plaintext

# SCsub
Import('env')
sources = [
"register_types.cpp",
"lroom.cpp",
"lroom_manager.cpp",
"lportal.cpp",
]
module_env = env.Clone()
module_env.Append(CXXFLAGS=['-O2', '-std=c++11'])
if ARGUMENTS.get('lportal_shared', 'no') == 'yes':
# Shared lib compilation
module_env.Append(CXXFLAGS='-fPIC')
module_env['LIBS'] = []
shared_lib = module_env.SharedLibrary(target='#bin/lportal', 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)