blob: c7f58e87f7819537b617398c08747bca5abd7d20 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#!/usr/bin/env python
from misc.utility.scons_hints import *
Import("env")
Import("env_modules")
env_tga = env_modules.Clone()
# Godot source files
env_tga.add_source_files(env.modules_sources, "*.cpp")
|