You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-04 12:00:25 +00:00
Co-authored-by: A Thousand Ships <96648715+AThousandShips@users.noreply.github.com> Co-authored-by: K. S. Ernest (iFire) Lee <fire@users.noreply.github.com> Co-authored-by: Naming-things-is-hard-btw <ahmadmhamad12331233@gmail.com>
12 lines
209 B
Python
12 lines
209 B
Python
#!/usr/bin/env python
|
|
from misc.utility.scons_hints import *
|
|
|
|
Import("env")
|
|
Import("env_modules")
|
|
|
|
env_gltf = env_modules.Clone()
|
|
|
|
# Godot source files
|
|
|
|
env_gltf.add_source_files(env.modules_sources, "*.cpp")
|