2020-01-03 16:57:25 +01:00
|
|
|
import os
|
|
|
|
|
2019-10-20 21:19:00 +02:00
|
|
|
Import('env')
|
|
|
|
|
2020-01-03 16:57:25 +01:00
|
|
|
module_env = env.Clone()
|
|
|
|
|
|
|
|
sources = [
|
|
|
|
"register_types.cpp",
|
|
|
|
|
|
|
|
"texture_packer.cpp",
|
|
|
|
"rectpack2D/pack.cpp",
|
|
|
|
|
|
|
|
"texture_merger.cpp",
|
2019-10-20 21:19:00 +02:00
|
|
|
|
2020-01-03 16:57:25 +01:00
|
|
|
"texture_resource/packer_image_resource.cpp",
|
2019-10-22 00:17:11 +02:00
|
|
|
|
2020-01-03 16:57:25 +01:00
|
|
|
"texture_resource/editor_plugin_packer_image_resource.cpp",
|
|
|
|
"texture_resource/packer_image_resource_importer.cpp",
|
2019-10-22 11:53:49 +02:00
|
|
|
|
2020-01-03 16:57:25 +01:00
|
|
|
"layers/texture_layer_merger.cpp",
|
|
|
|
]
|
2019-10-22 11:53:49 +02:00
|
|
|
|
|
|
|
|
2020-01-03 16:57:25 +01: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/texture_packer', 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)
|
2019-10-30 20:24:50 +01:00
|
|
|
|