12 lines
209 B
Plaintext
12 lines
209 B
Plaintext
|
|
#!/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")
|