mirror of
https://github.com/Relintai/texture_packer.git
synced 2024-11-12 10:15:16 +01:00
36 lines
859 B
Plaintext
36 lines
859 B
Plaintext
import os
|
|
|
|
Import('env')
|
|
|
|
module_env = env.Clone()
|
|
|
|
sources = [
|
|
"register_types.cpp",
|
|
|
|
"texture_packer.cpp",
|
|
"rectpack2D/pack.cpp",
|
|
|
|
"texture_merger.cpp",
|
|
|
|
"texture_resource/packer_image_resource.cpp",
|
|
|
|
"texture_resource/editor_plugin_packer_image_resource.cpp",
|
|
"texture_resource/packer_image_resource_importer.cpp",
|
|
|
|
"layers/texture_layer_merger.cpp",
|
|
]
|
|
|
|
|
|
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)
|
|
|