3a2ca68af3
Also remove unnecessary `Export('env')` in other SCsubs, Export should only be used when exporting *new* objects.
11 lines
244 B
Python
11 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")
|