Fix LVGL include path

This commit is contained in:
Johannes Marbach 2021-09-12 20:45:03 +02:00
parent 0855ebeb7b
commit 198219e536
3 changed files with 3 additions and 3 deletions

View file

@ -5,7 +5,7 @@
#ifndef SQ2LV_LAYOUTS_H
#define SQ2LV_LAYOUTS_H
#include "../lvgl/lvgl.h"
#include "lvgl/lvgl.h"
/* Layout IDs, values can be used as indexes into the sq2lv_layouts array */
typedef enum {

View file

@ -5,7 +5,7 @@
#ifndef SQ2LV_LAYOUTS_H
#define SQ2LV_LAYOUTS_H
#include "../lvgl/lvgl.h"
#include "lvgl/lvgl.h"
/* Layout IDs, values can be used as indexes into the sq2lv_layouts array */
typedef enum {

View file

@ -593,7 +593,7 @@ if __name__ == '__main__':
c_builder.add_line()
h_builder = SourceFileBuilder()
h_builder.add_include('../lvgl/lvgl.h')
h_builder.add_include('lvgl/lvgl.h')
h_builder.add_line()
layouts = []