Lines Matching full: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')
132 if 'PATH' not in os.environ:
133 os.environ['PATH'] = ''
135 os.environ['PATH'] = (
136 f'{fake_libc_path}{os.pathsep}{os.environ["PATH"]}'
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')
263 print('temporary file path:', temp_directory)
273 '--output-path',
286 'path to lv_conf.h (including file name), if this is not set then '
302 "path to a custom header file. When using this to supply a custom"
310 "You need to provide the absolute path to the header file when "
314 default=os.path.join(temp_directory, "lvgl", "lvgl.h")