mirror of
https://github.com/RT-Thread/rt-thread.git
synced 2025-01-19 15:33:31 +08:00
7fa1c819ee
* add bsp of tae32f5300 * [tae32f5300]Modify the format of the bsp of tae32f5300 * [tae32f5300]Remove the compilation scripts of gcc and iar * [tae32f5300]Resolve conflicts of action.yml secondly
13 lines
222 B
Python
13 lines
222 B
Python
import rtconfig
|
|
from building import *
|
|
|
|
cwd = GetCurrentDir()
|
|
CPPPATH = [cwd, str(Dir('#'))]
|
|
src = Split("""
|
|
main.c
|
|
""")
|
|
|
|
group = DefineGroup('Applications', src, depend = [''], CPPPATH = CPPPATH)
|
|
|
|
Return('group')
|