mirror of
https://github.com/Relintai/pandemonium_engine.git
synced 2024-12-18 18:06:56 +01:00
12 lines
251 B
Plaintext
12 lines
251 B
Plaintext
|
#!/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")
|
||
|
|