You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-04 12:00:25 +00:00
Also remove unnecessary `Export('env')` in other SCsubs,
Export should only be used when exporting *new* objects.
12 lines
244 B
Python
12 lines
244 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")
|