mirror of
https://github.com/lvgl/lvgl.git
synced 2024-11-23 01:33:59 +08:00
15 lines
257 B
C
15 lines
257 B
C
/**
|
|
* @file lv_version.h
|
|
* The current version of LVGL
|
|
*/
|
|
|
|
#ifndef LVGL_VERSION_H
|
|
#define LVGL_VERSION_H
|
|
|
|
#define LVGL_VERSION_MAJOR 9
|
|
#define LVGL_VERSION_MINOR 3
|
|
#define LVGL_VERSION_PATCH 0
|
|
#define LVGL_VERSION_INFO "dev"
|
|
|
|
#endif /* LVGL_VERSION_H */
|