4
0
mirror of https://github.com/RT-Thread/rt-thread.git synced 2025-02-16 14:19:20 +08:00
2017-12-06 20:34:52 +08:00

11 lines
186 B
Python

from building import *
cwd = GetCurrentDir()
src = Glob('*.c')
CPPPATH = [cwd]
group = DefineGroup('gui_demo', src, depend = ['RTGUI_USING_DEMO'], CPPPATH = CPPPATH)
Return('group')