mirror of
https://github.com/RT-Thread/rt-thread.git
synced 2025-01-17 07:53:30 +08:00
14 lines
218 B
Python
14 lines
218 B
Python
|
import rtconfig
|
||
|
from building import *
|
||
|
|
||
|
cwd = GetCurrentDir()
|
||
|
CPPPATH = [cwd]
|
||
|
src = Split("""
|
||
|
main.c
|
||
|
lcd_init.c
|
||
|
""")
|
||
|
|
||
|
group = DefineGroup('Applications', src, depend = [''], CPPPATH = CPPPATH)
|
||
|
|
||
|
Return('group')
|