forked from lvgl/lvgl
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(cmake): generate versioned shared libraries (lvgl#5865)
Signed-off-by: Marek Vasut <[email protected]> Co-authored-by: Marek Vasut <[email protected]>
- Loading branch information
Showing
5 changed files
with
47 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
/** | ||
* @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*/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
/** | ||
* @file version.h | ||
* The current version of LVGL | ||
*/ | ||
|
||
#ifndef LVGL_VERSION_H | ||
#define LVGL_VERSION_H | ||
|
||
#define LVGL_VERSION_MAJOR @LVGL_VERSION_MAJOR@ | ||
#define LVGL_VERSION_MINOR @LVGL_VERSION_MINOR@ | ||
#define LVGL_VERSION_PATCH @LVGL_VERSION_PATCH@ | ||
#define LVGL_VERSION_INFO "@LVGL_VERSION_INFO@" | ||
|
||
#endif /*LVGL_VERSION_H*/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters