xref: /nrf52832-nimble/SConscript (revision 150812a83cab50279bd772ef6db1bfaf255f2c5b)
1# for module compiling
2import os
3from building import *
4
5cwd  = GetCurrentDir()
6objs = []
7list = os.listdir(cwd)
8
9for d in list:
10    path = os.path.join(cwd, d)
11    if os.path.isfile(os.path.join(path, 'SConscript')):
12        objs = objs + SConscript(os.path.join(d, 'SConscript'))
13
14Return('objs')
15