mirror of
https://github.com/RT-Thread/rt-thread.git
synced 2025-02-26 07:27:12 +08:00
* 重新pull后上传bsp和action * remove the file named main.c in cubemx prj and add enter at last in the file named user_key.c * remove personal project environment file project.uvguix.slhuan in rtt/bsp/stm32/stm32f103_100ask_mini * remove system_stmf1xx.c in bsp/stm32/stm32f103-100ask_pro/mini * modify stm32f1xx_it.c code to conform to the specification Co-authored-by: slhuan <953172510@qq.com>
16 lines
356 B
Python
16 lines
356 B
Python
from building import *
|
|
import os
|
|
|
|
cwd = GetCurrentDir()
|
|
src = Glob('*.c')
|
|
CPPPATH = [cwd]
|
|
|
|
group = DefineGroup('Applications', src, depend = [''], CPPPATH = CPPPATH)
|
|
|
|
list = os.listdir(cwd)
|
|
for item in list:
|
|
if os.path.isfile(os.path.join(cwd, item, 'SConscript')):
|
|
group = group + SConscript(os.path.join(item, 'SConscript'))
|
|
|
|
Return('group')
|