SCsub 276 B

12345678910111213
  1. #!/usr/bin/env python
  2. from misc.utility.scons_hints import *
  3. Import("env")
  4. import default_theme_icons_builders
  5. env.CommandNoCache(
  6. "#scene/theme/default_theme_icons.gen.h",
  7. Glob("*.svg"),
  8. env.Run(default_theme_icons_builders.make_default_theme_icons_action),
  9. )