mirror of
https://github.com/lvgl/lvgl.git
synced 2024-11-23 01:33:59 +08:00
fix(rt-thread): fix compile error (#6938)
This commit is contained in:
parent
bc7abe9dd8
commit
b2f2b9e148
@ -28,6 +28,8 @@ src = src + Glob(os.path.join(lvgl_src_cwd,'*.c'))
|
||||
for root, dirs, files in os.walk(lvgl_src_cwd):
|
||||
for dir in dirs:
|
||||
current_path = os.path.join(root, dir)
|
||||
if current_path == os.path.join(lvgl_src_cwd, 'libs', 'thorvg', 'rapidjson', 'msinttypes'): # exclude the msinttypes folder
|
||||
continue
|
||||
src = src + Glob(os.path.join(current_path,'*.c')) # add all .c files
|
||||
if check_h_hpp_exists(current_path): # add .h and .hpp path
|
||||
inc = inc + [current_path]
|
||||
|
Loading…
Reference in New Issue
Block a user