2021-10-11 11:30:59 +02:00
|
|
|
#!/usr/bin/env python
|
2024-06-11 15:19:07 -05:00
|
|
|
from misc.utility.scons_hints import *
|
2021-10-11 11:30:59 +02:00
|
|
|
|
|
|
|
|
Import("env")
|
|
|
|
|
|
|
|
|
|
import editor.template_builders as build_template_gd
|
|
|
|
|
|
2025-01-01 15:40:46 -06:00
|
|
|
env.CommandNoCache("templates.gen.h", Glob("*/*.gd"), env.Run(build_template_gd.make_templates))
|