Lines Matching refs:path
9 base_path = os.path.abspath(os.path.dirname(__file__))
10 sys.path.insert(0, base_path)
12 project_path = os.path.abspath(os.path.join(base_path, '..', '..'))
13 docs_path = os.path.join(project_path, 'docs')
14 sys.path.insert(0, docs_path)
31 lvgl_src_path = os.path.join(lvgl_path, 'src')
32 temp_lvgl = os.path.join(temp_directory, 'lvgl')
34 os.path.splitext(os.path.split(target_header)[-1])[0]
39 shutil.copytree(lvgl_src_path, os.path.join(temp_lvgl, 'src'))
40 shutil.copyfile(os.path.join(lvgl_path, 'lvgl.h'), os.path.join(temp_lvgl, 'lvgl.h'))
42 pp_file = os.path.join(temp_directory, target_header_base_name + '.pp')
45 lvgl_config_path = os.path.join(lvgl_path, 'lv_conf_template.h')
81 with open(os.path.join(temp_directory, 'lv_conf.h'), 'wb') as f:
85 dst = os.path.join(temp_directory, 'lv_conf.h')
167 if not os.path.exists(pp_file):
194 if not os.path.exists(output_path):
197 output_path = os.path.join(output_path, target_header_base_name + '.json')
314 default=os.path.join(temp_directory, "lvgl", "lvgl.h")