mirror of
https://github.com/lvgl/lvgl.git
synced 2025-01-14 06:42:58 +08:00
2c469279f5
Signed-off-by: Marek Vasut <marex@denx.de> Co-authored-by: Marek Vasut <marex@denx.de>
15 lines
252 B
C
15 lines
252 B
C
/**
|
|
* @file version.h
|
|
* The current version of LVGL
|
|
*/
|
|
|
|
#ifndef LVGL_VERSION_H
|
|
#define LVGL_VERSION_H
|
|
|
|
#define LVGL_VERSION_MAJOR 9
|
|
#define LVGL_VERSION_MINOR 1
|
|
#define LVGL_VERSION_PATCH 1
|
|
#define LVGL_VERSION_INFO "dev"
|
|
|
|
#endif /*LVGL_VERSION_H*/
|