feat: modules moved and engine moved to submodule
This commit is contained in:
parent
dfb5e645cd
commit
c33d2130cc
5136 changed files with 225275 additions and 64485 deletions
|
|
@ -3,17 +3,14 @@ from misc.utility.scons_hints import *
|
|||
|
||||
Import("env")
|
||||
|
||||
import glob
|
||||
|
||||
import editor_theme_builders
|
||||
|
||||
# Fonts
|
||||
flist = glob.glob(env.Dir("#thirdparty").abspath + "/fonts/*.ttf")
|
||||
flist.extend(glob.glob(env.Dir("#thirdparty").abspath + "/fonts/*.otf"))
|
||||
flist.extend(glob.glob(env.Dir("#thirdparty").abspath + "/fonts/*.woff"))
|
||||
flist.extend(glob.glob(env.Dir("#thirdparty").abspath + "/fonts/*.woff2"))
|
||||
flist = Glob("#thirdparty/fonts/*.ttf")
|
||||
flist.extend(Glob("#thirdparty/fonts/*.otf"))
|
||||
flist.extend(Glob("#thirdparty/fonts/*.woff"))
|
||||
flist.extend(Glob("#thirdparty/fonts/*.woff2"))
|
||||
flist.sort()
|
||||
env.Depends("#editor/themes/builtin_fonts.gen.h", flist)
|
||||
env.CommandNoCache(
|
||||
"#editor/themes/builtin_fonts.gen.h",
|
||||
flist,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue