https://github.com/paramsiddharth/qt-displaynumbers
An application to display numbers from 1 to 10 in bases 2, 8, 10, and 16.
https://github.com/paramsiddharth/qt-displaynumbers
Last synced: 8 months ago
JSON representation
An application to display numbers from 1 to 10 in bases 2, 8, 10, and 16.
- Host: GitHub
- URL: https://github.com/paramsiddharth/qt-displaynumbers
- Owner: paramsiddharth
- Created: 2020-08-13T11:20:29.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2020-08-14T06:22:50.000Z (almost 6 years ago)
- Last Synced: 2025-10-15T16:29:17.406Z (8 months ago)
- Language: C++
- Size: 6.84 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Display Numbers
A GUI-based application with a scalable layout
that lets the user display numbers from 1 to 10
in bases 2, 8, 10, and 16.
Made in Qt (C++).
## Compiling using `qmake` and `gcc` on Windows
- Use `qmake` to create the required files for compilation.
```
> qmake nums.pro
```
- After verifying the generated `Makefile`, build the application.
```
> make
```
For MinGW or MinGW-w64 in Windows, use `mingw32-make` instead.
To ensure the deployment of the compiled executable with all Qt-related dependencies, `windeployqt` will automatically be executed to copy the required files.
The compiled application will now be found in the `release` subfolder.