4
0
mirror of https://github.com/RT-Thread/rt-thread.git synced 2025-01-15 19:39:53 +08:00
2018-03-04 08:21:19 +08:00

15 lines
207 B
Python

# for module compiling
import os
Import('rtconfig')
from building import *
objs = []
cwd = GetCurrentDir()
list = os.listdir(cwd)
objs += SConscript(os.path.join('drv', 'SConscript'))
Return('objs')