mirror of
https://gitee.com/Vancouver2017/luban-lite.git
synced 2025-12-25 05:28:55 +00:00
37 lines
963 B
C
37 lines
963 B
C
/**
|
|
* File: awtk_version.h
|
|
* Author: AWTK Develop Team
|
|
* Brief: awtk version
|
|
*
|
|
* Copyright (c) 2021 - 2023 Guangzhou ZHIYUAN Electronics Co.,Ltd.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* License file for more details.
|
|
*
|
|
*/
|
|
|
|
/**
|
|
* History:
|
|
* ================================================================
|
|
* 2021-08-06 Luo Zhiming <luozhiming@zlg.cn> created
|
|
*
|
|
*/
|
|
#ifndef AWTK_VERSION_H
|
|
#define AWTK_VERSION_H
|
|
|
|
#define AWTK_VERSION_MAJOR 1
|
|
#define AWTK_VERSION_MINOR 7
|
|
#define AWTK_VERSION_MICRO 1
|
|
#define AWTK_VERSION_RELEASE_NUMBER 0
|
|
|
|
#define AWTK_VERSION_EXPERIMENTAL 0x7FFFFFFF
|
|
|
|
/* awtk develop released a stable version */
|
|
#ifndef AWTK_VERSION_RELEASE_ID
|
|
#define AWTK_VERSION_RELEASE_ID AWTK_VERSION_EXPERIMENTAL
|
|
#endif /*AWTK_VERSION_RELEASE_ID*/
|
|
|
|
#endif /*AWTK_VERSION_H*/
|