mirror of
https://github.com/godotengine/godot-visual-script.git
synced 2025-12-31 21:48:42 +03:00
12 lines
240 B
Python
12 lines
240 B
Python
#!/usr/bin/env python
|
|
|
|
Import("env")
|
|
Import("env_modules")
|
|
|
|
env_vs = env_modules.Clone()
|
|
|
|
env_vs.add_source_files(env.modules_sources, "*.cpp")
|
|
|
|
if env["target"] == "editor":
|
|
env_vs.add_source_files(env.modules_sources, "editor/*.cpp")
|