mirror of
https://github.com/godotengine/godot
synced 2024-11-02 08:18:44 +00:00
10 lines
171 B
Python
10 lines
171 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")
|
|
|
|
Export('env')
|