rt-thread-official/bsp/nuvoton/nk-980iot/applications/lvgl/SConscript

18 lines
351 B
Python
Raw Normal View History

Import('RTT_ROOT')
from building import *
import os
objs = []
if GetDepend('PKG_USING_LVGL'):
cwd = GetCurrentDir()
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'))
Return('objs')