forked from RT-Thread/packages
-
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.
Merge pull request RT-Thread#1041 from xidongxu/master
【添加】 ugui软件包
- Loading branch information
Showing
3 changed files
with
57 additions
and
0 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,28 @@ | ||
|
||
# Kconfig file for package ugui | ||
menuconfig PKG_USING_UGUI | ||
bool "uGUI:Open source graphics library ugui ported to rtthread." | ||
default n | ||
|
||
if PKG_USING_UGUI | ||
|
||
config PKG_UGUI_PATH | ||
string | ||
default "/packages/multimedia/ugui" | ||
|
||
choice | ||
prompt "Version" | ||
default PKG_USING_UGUI_LATEST_VERSION | ||
help | ||
Select the package version | ||
|
||
config PKG_USING_UGUI_LATEST_VERSION | ||
bool "latest" | ||
endchoice | ||
|
||
config PKG_UGUI_VER | ||
string | ||
default "latest" if PKG_USING_UGUI_LATEST_VERSION | ||
|
||
endif | ||
|
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,28 @@ | ||
{ | ||
"name": "ugui", | ||
"description": "uGUI:Open source graphics library ugui ported to rtthread.", | ||
"description_zh": "开源图形库ugui移植到rtthread。", | ||
"enable": "PKG_USING_UGUI", | ||
"keywords": [ | ||
"ugui" | ||
], | ||
"category": "multimedia", | ||
"author": { | ||
"name": "xidongxu", | ||
"email": "[email protected]", | ||
"github": "xidongxu" | ||
}, | ||
"license": "unknown", | ||
"repository": "https://github.com/xidongxu/ugui.git", | ||
"icon": "unknown", | ||
"homepage": "unknown", | ||
"doc": "unknown", | ||
"site": [ | ||
{ | ||
"version": "latest", | ||
"URL": "https://github.com/xidongxu/ugui.git", | ||
"filename": "ugui-master.zip", | ||
"VER_SHA": "master" | ||
} | ||
] | ||
} |