4
0
mirror of https://github.com/RT-Thread/rt-thread.git synced 2025-01-26 13:47:23 +08:00

17 lines
310 B
Python
Raw Normal View History

from building import *
cwd = GetCurrentDir()
CPPPATH = [cwd, str(Dir('#'))]
src = Split("""
application.c
startup.c
""")
# add UI engine demo.
if GetDepend('RT_USING_GUIENGINE'):
src += ['rtgui_demo.c']
group = DefineGroup('Applications', src, depend = [''], CPPPATH = CPPPATH)
Return('group')