Lines Matching refs:path
9 cwd = GetCurrentDir() # get current dir path
16 def check_h_hpp_exists(path):
17 file_dirs = os.listdir(path)
19 if os.path.splitext(file_dir)[1] in ['.h', '.hpp']:
27 src = src + Glob(os.path.join(lvgl_src_cwd,'*.c'))
30 current_path = os.path.join(root, dir)
31 …if current_path == os.path.join(lvgl_src_cwd, 'libs', 'thorvg', 'rapidjson', 'msinttypes'): # excl…
33 src = src + Glob(os.path.join(current_path,'*.c')) # add all .c files
34 if check_h_hpp_exists(current_path): # add .h and .hpp path
43 current_path = os.path.join(root, dir)
44 src = src + Glob(os.path.join(current_path,'*.c'))
53 current_path = os.path.join(root, dir)
54 src = src + Glob(os.path.join(current_path,'*.c'))
68 path = os.path.join(cwd, d)
69 if os.path.isfile(os.path.join(path, 'SConscript')):
70 group = group + SConscript(os.path.join(d, 'SConscript'))