mirror of
https://github.com/godotengine/godot.git
synced 2025-12-08 06:09:55 +00:00
12 lines
209 B
Text
12 lines
209 B
Text
|
|
#!/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")
|