diff options
| author | ruki <[email protected]> | 2019-05-09 23:23:22 +0800 |
|---|---|---|
| committer | ruki <[email protected]> | 2019-05-09 14:20:15 +0800 |
| commit | 4af6b12e096b94e27059b31f395ede3091dc258a (patch) | |
| tree | b5e892ef7f9761358353882ee5b2fe0b5ceef3de | |
| parent | 3a76c3ef8ee5a7464c1fd872f312d4dd15937dda (diff) | |
modify changelogs
| -rw-r--r-- | CHANGELOG.md | 2 | ||||
| -rw-r--r-- | xmake/templates/c++/quickapp_qt_static/template.lua | 4 | ||||
| -rw-r--r-- | xmake/templates/c++/widgetapp_qt_static/template.lua | 4 |
3 files changed, 6 insertions, 4 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index d675a6539..27dbee0c6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,7 @@ * [#382](https://github.com/xmake-io/xmake/issues/382): Simplify simple scope settings * [#397](https://github.com/xmake-io/xmake/issues/397): Add clib package manager support * [#404](https://github.com/xmake-io/xmake/issues/404): Support Qt for android and deploy android apk +* Add some qt empty project templates, e.g. `widgetapp_qt`, `quickapp_qt_static` and `widgetapp_qt_static` ### Changes @@ -583,6 +584,7 @@ * [#382](https://github.com/xmake-io/xmake/issues/382): 简化域设置语法 * [#397](https://github.com/xmake-io/xmake/issues/397): 添加clib包集成支持 * [#404](https://github.com/xmake-io/xmake/issues/404): 增加Qt/Android编译支持,并且支持android apk生成和部署 +* 添加一些Qt空工程模板,例如:`widgetapp_qt`, `quickapp_qt_static` and `widgetapp_qt_static` ### 改进 diff --git a/xmake/templates/c++/quickapp_qt_static/template.lua b/xmake/templates/c++/quickapp_qt_static/template.lua index 1efa5b9aa..314503740 100644 --- a/xmake/templates/c++/quickapp_qt_static/template.lua +++ b/xmake/templates/c++/quickapp_qt_static/template.lua @@ -1,8 +1,8 @@ -- set name -set_name("quickapp_qt") +set_name("quickapp_qt_static") -- set description -set_description("The Quick Application (Qt)") +set_description("The Quick Application (Qt/Static)") -- set project directory set_projectdir("project") diff --git a/xmake/templates/c++/widgetapp_qt_static/template.lua b/xmake/templates/c++/widgetapp_qt_static/template.lua index 668b32bce..7a1cfed24 100644 --- a/xmake/templates/c++/widgetapp_qt_static/template.lua +++ b/xmake/templates/c++/widgetapp_qt_static/template.lua @@ -1,8 +1,8 @@ -- set name -set_name("widgetapp_qt") +set_name("widgetapp_qt_static") -- set description -set_description("The Widget Application (Qt)") +set_description("The Widget Application (Qt/Static)") -- set project directory set_projectdir("project") |
