mirror of
https://github.com/Relintai/pandemonium_engine.git
synced 2024-11-22 00:48:09 +01:00
12 lines
251 B
Python
12 lines
251 B
Python
#!/usr/bin/env python
|
|
|
|
Import("env")
|
|
Import("env_modules")
|
|
|
|
env_gdscript = env_modules.Clone()
|
|
|
|
env_gdscript.add_source_files(env.modules_sources, "*.cpp")
|
|
|
|
if env["tools"]:
|
|
env_gdscript.add_source_files(env.modules_sources, "./editor/*.cpp")
|
|
|