Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jpnurmi/qtmpl
Qt application template
https://github.com/jpnurmi/qtmpl
Last synced: 24 days ago
JSON representation
Qt application template
- Host: GitHub
- URL: https://github.com/jpnurmi/qtmpl
- Owner: jpnurmi
- License: unlicense
- Created: 2016-02-01T15:21:16.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2016-02-02T08:00:00.000Z (almost 9 years ago)
- Last Synced: 2023-03-22T18:40:45.501Z (over 1 year ago)
- Language: C++
- Size: 8.79 KB
- Stars: 21
- Watchers: 5
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Qt app template
===============This is a simple Qt application template that illustrates how to share
the same backend for multiple user interfaces. The template comes with
one desktop-oriented UI based on Qt Widgets, and another mobile-oriented
UI based on Qt Quick.Structure
- /features
- build system related qmake project feature (.prf) files
- /src/backend:
- a shared backend library example
- /src/plugins:
- an example plugin
- /src/quick:
- a mobile-oriented UI based on Qt Quick
- /src/shared:
- shared code included into both UIs
- /src/widgets:
- a desktop-oriented UI based on Qt Widgets
- /tests/auto:
- an auto test example testing the backend library