mirror of
https://github.com/Relintai/pandemonium_engine_minimal.git
synced 2024-11-10 20:12:10 +01:00
17 lines
375 B
Plaintext
17 lines
375 B
Plaintext
|
#!/usr/bin/env python
|
||
|
|
||
|
Import("env")
|
||
|
Import("env_modules")
|
||
|
|
||
|
env_navigation = env_modules.Clone()
|
||
|
|
||
|
# Pandemonium source files
|
||
|
|
||
|
module_obj = []
|
||
|
|
||
|
env_navigation.add_source_files(module_obj, "*.cpp")
|
||
|
env_navigation.add_source_files(module_obj, "geometry_parser_2d/*.cpp")
|
||
|
env_navigation.add_source_files(module_obj, "geometry_parser_3d/*.cpp")
|
||
|
|
||
|
env.modules_sources += module_obj
|