mirror of
https://github.com/RT-Thread/rt-thread.git
synced 2025-02-25 22:07:17 +08:00
14 lines
190 B
Python
14 lines
190 B
Python
|
from building import *
|
||
|
|
||
|
cwd = GetCurrentDir()
|
||
|
|
||
|
src = Split("""
|
||
|
main.c
|
||
|
""")
|
||
|
|
||
|
path = [cwd, str(Dir('#'))]
|
||
|
|
||
|
group = DefineGroup('Applications', src, depend=[''], CPPPATH=path)
|
||
|
|
||
|
Return('group')
|