https://github.com/fazers/qt-project-template
https://github.com/fazers/qt-project-template
Last synced: over 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/fazers/qt-project-template
- Owner: FaZeRs
- Created: 2023-06-21T09:43:04.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2024-10-16T12:39:42.000Z (over 1 year ago)
- Last Synced: 2025-01-31T19:42:39.107Z (over 1 year ago)
- Language: C++
- Homepage: https://fazers.github.io/qt-project-template/
- Size: 122 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# QT 6 Project Template
Project template for QT projects.
## Build
```bash
cmake -E make_directory build && cd build
cmake -G Ninja .. -DCMAKE_BUILD_TYPE=Release
cmake --build . --parallel --config Release
ctest -C Release --output-on-failure --output-junit test-results.xml
cmake --install .
cmake --build . --config Release --target package
```