[simulator][win32] add lvgl driver

This commit is contained in:
Meco Man
2021-12-16 01:12:24 -05:00
parent a8796abdc2
commit e72eb1ae95
12 changed files with 1288 additions and 3 deletions
+6
View File
@@ -1,4 +1,5 @@
import sys
import os
from building import *
cwd = GetCurrentDir()
@@ -34,4 +35,9 @@ if sys.platform[0:5]=="linux": #check whether under linux
group = DefineGroup('Drivers', src, depend = [''],
CPPPATH = CPPPATH, LIBS=LIBS, LIBPATH=LIBPATH, CPPDEFINES = CPPDEFINES)
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'))
Return('group')