2020-01-03 16:44:53 +01:00
|
|
|
import os
|
|
|
|
|
2019-05-31 18:26:36 +02:00
|
|
|
Import('env')
|
|
|
|
|
2020-01-03 16:44:53 +01:00
|
|
|
module_env = env.Clone()
|
|
|
|
|
|
|
|
if os.path.isdir('../mesh_data_resource'):
|
|
|
|
module_env.Append(CPPDEFINES=['MESH_DATA_RESOURCE_PRESENT'])
|
|
|
|
|
|
|
|
|
|
|
|
sources = [
|
|
|
|
|
|
|
|
"register_types.cpp",
|
|
|
|
|
|
|
|
"containers/voxelman_queue.cpp",
|
|
|
|
"containers/voxelman_unbounded_queue.cpp",
|
|
|
|
|
|
|
|
"library/voxelman_library.cpp",
|
|
|
|
"library/voxelman_library_simple.cpp",
|
|
|
|
"library/voxelman_library_merger.cpp",
|
2019-05-31 18:26:36 +02:00
|
|
|
|
2020-01-03 16:44:53 +01:00
|
|
|
"library/voxel_surface.cpp",
|
|
|
|
"library/voxel_surface_simple.cpp",
|
|
|
|
"library/voxel_surface_merger.cpp",
|
2019-12-03 03:39:53 +01:00
|
|
|
|
2020-01-03 16:44:53 +01:00
|
|
|
"data/voxel_light.cpp",
|
2019-11-09 17:26:16 +01:00
|
|
|
|
2020-01-03 16:44:53 +01:00
|
|
|
"meshers/voxel_mesher.cpp",
|
2020-01-14 02:57:32 +01:00
|
|
|
|
|
|
|
"meshers/transvoxel_uv_mesher/transvoxel_cell_data.cpp",
|
|
|
|
"meshers/transvoxel_uv_mesher/voxel_mesher_transvoxel.cpp",
|
|
|
|
"meshers/transvoxel_uv_mesher/transvoxel_tables.cpp",
|
2019-05-31 22:54:31 +02:00
|
|
|
|
2020-01-03 16:44:53 +01:00
|
|
|
"world/voxel_world.cpp",
|
|
|
|
"world/voxel_chunk.cpp",
|
|
|
|
"world/voxel_structure.cpp",
|
|
|
|
"world/environment_data.cpp",
|
|
|
|
"world/voxel_chunk_prop_data.cpp",
|
2019-05-31 22:54:31 +02:00
|
|
|
|
2020-01-03 16:44:53 +01:00
|
|
|
"meshers/cubic_mesher/voxel_mesher_cubic.cpp",
|
|
|
|
"meshers/cubic_mesher/voxel_cube_points.cpp",
|
2019-05-31 22:54:31 +02:00
|
|
|
|
2020-01-03 16:44:53 +01:00
|
|
|
"props/prop_data.cpp",
|
|
|
|
"props/prop_data_entry.cpp",
|
|
|
|
"props/prop_data_scene.cpp",
|
|
|
|
"props/prop_data_mesh.cpp",
|
|
|
|
"props/prop_data_light.cpp",
|
|
|
|
"props/prop_data_prop.cpp",
|
|
|
|
"props/prop_data_entity.cpp",
|
2019-07-13 22:03:23 +02:00
|
|
|
|
2020-01-03 16:44:53 +01:00
|
|
|
"level_generator/voxelman_level_generator.cpp",
|
2019-07-19 18:39:46 +02:00
|
|
|
|
2020-01-03 16:44:53 +01:00
|
|
|
"areas/world_area.cpp",
|
2019-09-03 13:52:32 +02:00
|
|
|
|
2020-01-03 16:44:53 +01:00
|
|
|
"clutter/ground_clutter.cpp",
|
|
|
|
"clutter/ground_clutter_foliage.cpp",
|
|
|
|
]
|
2019-11-09 14:07:04 +01:00
|
|
|
|
2019-11-10 01:03:48 +01:00
|
|
|
|
2020-01-03 16:44:53 +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/voxelman', 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-11-10 02:33:02 +01:00
|
|
|
|