2021-01-28 19:59:31 +08:00
|
|
|
from building import *
|
2022-01-12 18:56:35 +08:00
|
|
|
import os
|
2021-01-28 19:59:31 +08:00
|
|
|
|
2022-01-12 18:56:35 +08:00
|
|
|
cwd = GetCurrentDir()
|
|
|
|
src = ['main.c']
|
|
|
|
CPPPATH = [cwd]
|
2021-01-28 19:59:31 +08:00
|
|
|
|
|
|
|
group = DefineGroup('Applications', src, depend = [''], CPPPATH = CPPPATH)
|
|
|
|
|
2022-01-12 18:56:35 +08:00
|
|
|
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-01-13 09:38:16 +08:00
|
|
|
Return('group')
|