https://github.com/nilsding/jyrkis-qt-app-template
a template repository for making Qt apps the Jyrki Way™
https://github.com/nilsding/jyrkis-qt-app-template
Last synced: 6 months ago
JSON representation
a template repository for making Qt apps the Jyrki Way™
- Host: GitHub
- URL: https://github.com/nilsding/jyrkis-qt-app-template
- Owner: nilsding
- License: gpl-3.0
- Created: 2022-06-02T20:36:29.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2022-06-02T20:37:15.000Z (about 4 years ago)
- Last Synced: 2025-07-02T13:48:20.436Z (about 1 year ago)
- Language: CMake
- Size: 14.6 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Jyrki's Qt app template
This is a template for making Qt apps the Jyrki Way™
## Usage
1. find a good project name
2. search and replace: `yourappname` with your project name
3. you're done :)
## Requirements
- Qt 6.2.1+
- CMake (for building)
## Building
```sh
# configure it
cmake --preset dev
# compile it
cmake --build --preset dev
# run it
./build/src/yourappname
```