mirror of
https://gitee.com/zlgopen/awtk.git
synced 2024-12-02 12:08:16 +08:00
15 lines
239 B
Python
15 lines
239 B
Python
import os
|
|
import sys
|
|
|
|
env=DefaultEnvironment().Clone()
|
|
|
|
env.Library('font_gen', ["font_gen.c"])
|
|
env['LIBS'] = ['font_gen', 'fontstb', 'common'] + env['LIBS']
|
|
|
|
env.Program('fontgen', ["main.c"])
|
|
|
|
env.Program('genascii', ["gen_ascii.c"])
|
|
|
|
|
|
|