4
0
mirror of https://github.com/RT-Thread/rt-thread.git synced 2025-01-25 04:37:22 +08:00
2017-12-12 19:43:37 +08:00

13 lines
269 B
Python

# RT-Thread building script for gui
from building import *
cwd = GetCurrentDir()
src = Glob('*.c') + Glob('*.cpp')
CPPPATH = [ cwd,
cwd + '/rtgui',
cwd + '/rtgui/widgets']
group = DefineGroup('GuiEngine', src, depend = [''], CPPPATH = CPPPATH)
Return('group')