update NRF52832 support NRF52SDK13

This commit is contained in:
xieyangrun
2017-05-15 16:12:15 +08:00
parent 3aa9796496
commit 0f37b300f5
1241 changed files with 338773 additions and 7268 deletions
+16
View File
@@ -0,0 +1,16 @@
# for module compiling
import os
from building import *
cwd = GetCurrentDir()
objs = []
list = os.listdir(cwd)
for d in list:
path = os.path.join(cwd, d)
if os.path.isfile(os.path.join(path, 'SConscript')):
objs = objs + SConscript(os.path.join(d, 'SConscript'))
objs = objs + SConscript(os.path.join(cwd, 'nRF5_SDK_13.0.0_04a0bfd/components/SConscript'))
Return('objs')