mirror of
https://github.com/godotengine/godot
synced 2024-11-02 10:25:48 +00:00
5fe6984639
They're moved to an `editor` subfolder so that we can easily handle them separately.
11 lines
259 B
Python
11 lines
259 B
Python
#!/usr/bin/env python
|
|
|
|
Import("env")
|
|
Import("env_modules")
|
|
|
|
env_gltf = env_modules.Clone()
|
|
|
|
# Godot's own source files
|
|
env_gltf.add_source_files(env.modules_sources, "*.cpp")
|
|
if env["tools"]:
|
|
env_gltf.add_source_files(env.modules_sources, "editor/*.cpp")
|