2022-03-11 12:13:56 +08:00
|
|
|
import rtconfig
|
|
|
|
from building import *
|
2022-08-08 00:15:13 +08:00
|
|
|
import os
|
2022-03-11 12:13:56 +08:00
|
|
|
|
|
|
|
cwd = GetCurrentDir()
|
|
|
|
src = Glob('*.c')
|
|
|
|
CPPPATH = [cwd]
|
|
|
|
|
2022-08-15 11:21:27 +08:00
|
|
|
# add for startup script
|
2022-05-31 06:04:05 +08:00
|
|
|
if rtconfig.PLATFORM in ['gcc']:
|
2022-03-11 12:13:56 +08:00
|
|
|
CPPDEFINES = ['__START=entry']
|
|
|
|
else:
|
|
|
|
CPPDEFINES = []
|
2022-08-15 11:21:27 +08:00
|
|
|
|
2022-03-11 12:13:56 +08:00
|
|
|
group = DefineGroup('Applications', src, depend = [''], CPPPATH = CPPPATH, CPPDEFINES=CPPDEFINES)
|
|
|
|
|
|
|
|
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'))
|
2022-08-15 11:21:27 +08:00
|
|
|
|
2022-03-11 12:13:56 +08:00
|
|
|
Return('group')
|