blob: 3379404a00ca730aa9b5a7ae5eb98c6f08bb1968 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#!/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")
|