mirror of
https://github.com/lvgl/lvgl.git
synced 2024-12-01 05:34:13 +08:00
15 lines
267 B
C
15 lines
267 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 1
|
|
#define LVGL_VERSION_PATCH 1
|
|
#define LVGL_VERSION_INFO "dev"
|
|
|
|
#endif /*__LVGL_VERSION_H__*/
|