mirror of
https://github.com/Relintai/voxelman.git
synced 2025-01-12 15:01:09 +01:00
Relintai
ba05f93aa2
-Huge cleanup. -Moved the voxel query to a new folder, also it's not in the build anymore. Will be removed shortly.
19 lines
782 B
Plaintext
19 lines
782 B
Plaintext
Import('env')
|
|
|
|
env.add_source_files(env.modules_sources,"register_types.cpp")
|
|
|
|
env.add_source_files(env.modules_sources,"collections/vector3i.cpp")
|
|
|
|
env.add_source_files(env.modules_sources,"library/voxelman_library.cpp")
|
|
env.add_source_files(env.modules_sources,"library/voxel_surface.cpp")
|
|
|
|
env.add_source_files(env.modules_sources,"data/voxel_light.cpp")
|
|
|
|
env.add_source_files(env.modules_sources,"meshers/voxel_mesher.cpp")
|
|
env.add_source_files(env.modules_sources,"meshers/voxel_mesher_transvoxel.cpp")
|
|
env.add_source_files(env.modules_sources,"meshers/transvoxel_tables.cpp")
|
|
|
|
env.add_source_files(env.modules_sources,"world/voxel_buffer.cpp")
|
|
env.add_source_files(env.modules_sources,"world/voxel_world.cpp")
|
|
env.add_source_files(env.modules_sources,"world/voxel_chunk.cpp")
|