4
0
mirror of https://github.com/RT-Thread/rt-thread.git synced 2025-01-16 03:39:22 +08:00
2018-03-03 16:34:01 +08:00

18 lines
327 B
Python

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