https://github.com/bobis33/qtapp-sandbox
Sandbox of Qt application.
https://github.com/bobis33/qtapp-sandbox
application cmake cpp cpp20 gui qt6
Last synced: 4 months ago
JSON representation
Sandbox of Qt application.
- Host: GitHub
- URL: https://github.com/bobis33/qtapp-sandbox
- Owner: bobis33
- License: mit
- Created: 2024-07-06T07:02:30.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-07-08T08:43:21.000Z (almost 2 years ago)
- Last Synced: 2025-01-17T12:15:54.264Z (over 1 year ago)
- Topics: application, cmake, cpp, cpp20, gui, qt6
- Language: C++
- Homepage:
- Size: 150 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[](https://github.com/bobis33/QtApp-Sandbox/actions/workflows/QtApp-Sandbox.yml)

[](LICENSE)
**ACTUALLY WORKING ON IT!**
- [Description](#description)
- [Prerequisites](#prerequisites)
- [Usage](#usage)
- [Commit Norms](#commit-norms)
- [License](#license)
- [Acknowledgements](#acknowledgements)
## Description
This project is a simple application that uses the Qt library, look like a sandbox for me, ill use it to test some stuff and improve my skills in C++ and Qt.
## Prerequisites
- [CMake](https://cmake.org/download/)
- [C++20](https://en.cppreference.com/w/cpp/20)
- [Qt](https://www.qt.io/download)
## Usage
### Build
```bash
$> ./build.sh build
[...]
```
> if it doesn't work, try the following command:
```bash
$> ./build.sh clean && ./build.sh build
[...]
```
### Run
```bash
$> ./qtsandbox
[...]
```
## Commit Norms
| Commit Type | Description |
|:------------|:--------------------------------------------------------------------------------------------------------------------------|
| build | Changes that affect the build system or external dependencies (npm, make, etc.) |
| ci | Changes related to integration files and scripts or configuration (Travis, Ansible, BrowserStack, etc.) |
| feat | Addition of a new feature |
| fix | Bug fix |
| perf | Performance improvements |
| refactor | Modification that neither adds a new feature nor improves performance |
| style | Change that does not affect functionality or semantics (indentation, formatting, adding space, renaming a variable, etc.) |
| docs | Writing or updating documentation |
| test | Addition or modification of tests |
## License
This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.
## Acknowledgements