[stm32][bsp] The sconscript script in the application folder increases the recursion searching capability

This commit is contained in:
Meco Man 2021-10-15 15:14:30 -04:00
parent 9fe546b0d8
commit fa4b7ec8fd
3 changed files with 20 additions and 11 deletions

View File

@ -1,11 +1,16 @@
Import('RTT_ROOT')
Import('rtconfig')
from building import *
import os
cwd = GetCurrentDir()
src = Glob('*.c')
CPPPATH = [cwd, ]
CPPPATH = [cwd]
group = DefineGroup('Applications', src, depend = [''], CPPPATH = CPPPATH)
list = os.listdir(cwd)
for d in list:
path = os.path.join(cwd, d)
if os.path.isfile(os.path.join(path, 'SConscript')):
group = group + SConscript(os.path.join(d, 'SConscript'))
Return('group')

View File

@ -1,12 +1,9 @@
import rtconfig
import os
from building import *
import os
cwd = GetCurrentDir()
CPPPATH = [cwd, str(Dir('#'))]
src = Split("""
main.c
""")
CPPPATH = [cwd]
src = Glob('*.c')
group = DefineGroup('Applications', src, depend = [''], CPPPATH = CPPPATH)

View File

@ -1,6 +1,7 @@
from building import *
import os
cwd = GetCurrentDir()
cwd = GetCurrentDir()
src = Split('''
main.c
@ -12,8 +13,14 @@ if GetDepend(['BSP_USING_SPI_LCD']):
if GetDepend(['PKG_USING_NRF24L01']):
src += ['nrf24l01_init.c']
CPPPATH = [str(Dir('#')), cwd]
CPPPATH = [cwd]
group = DefineGroup('Applications', src, depend = [''], CPPPATH = CPPPATH)
list = os.listdir(cwd)
for d in list:
path = os.path.join(cwd, d)
if os.path.isfile(os.path.join(path, 'SConscript')):
group = group + SConscript(os.path.join(d, 'SConscript'))
Return('group')