mirror of
https://github.com/Relintai/pandemonium_engine.git
synced 2024-11-22 08:57:34 +01:00
14 lines
322 B
Python
14 lines
322 B
Python
#!/usr/bin/env python
|
|
|
|
Import("env")
|
|
Import("env_modules")
|
|
|
|
env_csg = env_modules.Clone()
|
|
|
|
# Godot source files
|
|
|
|
env_csg.add_source_files(env.modules_sources, "*.cpp")
|
|
env_csg.add_source_files(env.modules_sources, "geometry_parser/*.cpp")
|
|
|
|
if env["tools"]:
|
|
env_csg.add_source_files(env.modules_sources, "editor/*.cpp") |