2019-04-20 14:51:33 +02:00
|
|
|
Import('env')
|
|
|
|
|
2019-09-24 15:08:43 +02:00
|
|
|
env.add_source_files(env.modules_sources,"register_types.cpp")
|
|
|
|
|
2019-10-18 09:43:45 +02:00
|
|
|
env.add_source_files(env.modules_sources,"main/dungeon_room.cpp")
|
|
|
|
env.add_source_files(env.modules_sources,"main/dungeon_corridor.cpp")
|
2019-09-24 15:08:43 +02:00
|
|
|
env.add_source_files(env.modules_sources,"main/dungeon.cpp")
|
|
|
|
env.add_source_files(env.modules_sources,"main/biome.cpp")
|
|
|
|
env.add_source_files(env.modules_sources,"main/planet.cpp")
|
|
|
|
|
2019-10-18 09:43:45 +02:00
|
|
|
env.add_source_files(env.modules_sources,"data/dungeon_room_data.cpp")
|
2019-10-18 09:18:23 +02:00
|
|
|
env.add_source_files(env.modules_sources,"data/dungeon_corridor_data.cpp")
|
2019-09-24 15:08:43 +02:00
|
|
|
env.add_source_files(env.modules_sources,"data/dungeon_data.cpp")
|
|
|
|
env.add_source_files(env.modules_sources,"data/biome_data.cpp")
|
2019-10-18 09:18:23 +02:00
|
|
|
env.add_source_files(env.modules_sources,"data/planet_data.cpp")
|
2019-11-07 19:47:59 +01:00
|
|
|
env.add_source_files(env.modules_sources,"data/world_generator_prop_data.cpp")
|
2019-09-24 15:08:43 +02:00
|
|
|
|
|
|
|
env.add_source_files(env.modules_sources,"world_generator.cpp")
|
2019-04-20 14:51:33 +02:00
|
|
|
|