mirror of
https://gitee.com/zlgopen/awtk.git
synced 2024-12-03 04:27:44 +08:00
12 lines
231 B
Python
12 lines
231 B
Python
import os
|
|
import sys
|
|
|
|
env=DefaultEnvironment().Clone()
|
|
|
|
env.Library('theme_gen', ['theme_gen.cc', 'xml_theme_gen.cc'])
|
|
env['LIBS'] = env['LIBS'] + ['theme_gen', 'xml', 'common', 'lftk_base']
|
|
env.Program('themegen', ['main.cc'])
|
|
|
|
|
|
|