1 /**
2  * @file lv_libs.h
3  *
4  */
5 
6 #ifndef LV_LIBS_H
7 #define LV_LIBS_H
8 
9 #ifdef __cplusplus
10 extern "C" {
11 #endif
12 
13 /*********************
14  *      INCLUDES
15  *********************/
16 #include "bmp/lv_bmp.h"
17 #include "fsdrv/lv_fsdrv.h"
18 #include "png/lv_png.h"
19 #include "gif/lv_gif.h"
20 #include "qrcode/lv_qrcode.h"
21 #include "sjpg/lv_sjpg.h"
22 #include "freetype/lv_freetype.h"
23 #include "rlottie/lv_rlottie.h"
24 #include "ffmpeg/lv_ffmpeg.h"
25 
26 /*********************
27  *      DEFINES
28  *********************/
29 
30 /**********************
31  *      TYPEDEFS
32  **********************/
33 
34 /**********************
35  * GLOBAL PROTOTYPES
36  **********************/
37 
38 /**********************
39  *      MACROS
40  **********************/
41 
42 #ifdef __cplusplus
43 } /*extern "C"*/
44 #endif
45 
46 #endif /*LV_LIBS_H*/
47