mirror of
https://github.com/lvgl/lvgl.git
synced 2025-01-14 06:42:58 +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 root, dirs, files in os.walk(lvgl_src_cwd):
|
||||||
for dir in dirs:
|
for dir in dirs:
|
||||||
current_path = os.path.join(root, dir)
|
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
|
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
|
if check_h_hpp_exists(current_path): # add .h and .hpp path
|
||||||
inc = inc + [current_path]
|
inc = inc + [current_path]
|
||||||
|
Loading…
x
Reference in New Issue
Block a user