4
0
mirror of https://github.com/RT-Thread/rt-thread.git synced 2025-02-03 00:14:35 +08:00

11 lines
210 B
Python
Raw Normal View History

import rtconfig
from building import *
src = Glob('*.c') + Glob('*.cpp')
cwd = GetCurrentDir()
CPPPATH = [cwd]
group = DefineGroup('snake', src, depend = ['RT_USING_RTGUI'], CPPPATH=CPPPATH)
Return('group')