4
0
mirror of https://github.com/RT-Thread/rt-thread.git synced 2025-02-15 07:29:17 +08:00

11 lines
186 B
Python
Raw Normal View History

2017-12-06 20:34:23 +08:00
from building import *
cwd = GetCurrentDir()
src = Glob('*.c')
CPPPATH = [cwd]
group = DefineGroup('gui_demo', src, depend = ['RTGUI_USING_DEMO'], CPPPATH = CPPPATH)
Return('group')