mirror of
https://github.com/RT-Thread/rt-thread.git
synced 2025-01-21 05:23:35 +08:00
5a61304a09
* add ch579m bsp Author: Tuber <tuber@xyza.cn> Date: Wed Feb 16 07:20:23 2022 +0000 * fix uart reg value error and format code * change file encode to utf-8
18 lines
307 B
Python
18 lines
307 B
Python
# RT-Thread building script for component
|
|
Import('RTT_ROOT')
|
|
Import('rtconfig')
|
|
from building import *
|
|
|
|
cwd = GetCurrentDir()
|
|
|
|
# add the general drivers.
|
|
src = Split("""
|
|
main.c
|
|
""")
|
|
|
|
CPPPATH = [cwd, str(Dir('#'))]
|
|
|
|
group = DefineGroup('Applications', src, depend = [''], CPPPATH = CPPPATH)
|
|
|
|
Return('group')
|