abouttreesummaryrefslogcommitdiff
path: root/srcs/special_font/build.pe
blob: fab828bd956c290dbb94931d2d6ad0c1237c153d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# The special font is used for the symbols of some keys. It is built from SVG
# files, one for each glyph.

# Starts from an existing font file for glyphs that don't have SVG sources yet.
Open($2)

# Imports glyphs, file name is position in the font.
i = 3
while (i < $argc)
  Select(Strtol($argv[i]:t:r))
  Import($argv[i])
  i++
endloop

Generate($1)