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: 3 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 5 years ago)
- Default Branch: master
- Last Pushed: 2020-08-14T06:22:50.000Z (almost 5 years ago)
- Last Synced: 2024-05-22T20:22:08.510Z (about 1 year ago)
- Language: C++
- Size: 6.84 KB
- Stars: 0
- Watchers: 2
- 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.