https://github.com/nmgwddj/qt6-conan-cmake-sample
https://github.com/nmgwddj/qt6-conan-cmake-sample
Last synced: 14 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/nmgwddj/qt6-conan-cmake-sample
- Owner: nmgwddj
- Created: 2022-04-07T09:31:14.000Z (about 3 years ago)
- Default Branch: master
- Last Pushed: 2022-04-09T08:40:58.000Z (about 3 years ago)
- Last Synced: 2025-04-10T00:55:15.589Z (14 days ago)
- Language: CMake
- Size: 5.86 KB
- Stars: 5
- Watchers: 2
- Forks: 2
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Build Qt project with Conan
This project demonstrates the simplest implementation of using Conan to manage Qt's third-party dependencies. You can create Qt applications on various platforms based on this project.
### Configuration
```bash
cmake -Bbuild -DCMAKE_BUILD_TYPE=Debug
```### Build
```bash
cmake --build build --config Debug
```### Run
On macOS
```bash
open ./build/bin/QtWithConan.app
```