mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-11-25 00:38:59 +08:00
b09937b750
- [x] Changes comply with the [maintainer guide](https://github.com/microsoft/vcpkg-docs/blob/main/vcpkg/contributing/maintainer-guide.md). - [ ] SHA512s are updated for each updated download. - [ ] The "supports" clause reflects platforms that may be fixed by this new version. - [ ] Any fixed [CI baseline](https://github.com/microsoft/vcpkg/blob/master/scripts/ci.baseline.txt) entries are removed from that file. - [ ] Any patches that are no longer applied are deleted from the port's directory. - [x] The version database is fixed by rerunning `./vcpkg x-add-version --all` and committing the result. - [x] Only one version is added to each modified port's versions file.
100 lines
2.0 KiB
JSON
100 lines
2.0 KiB
JSON
{
|
|
"name": "qcoro",
|
|
"version": "0.10.0",
|
|
"port-version": 1,
|
|
"description": "Coroutine support for Qt",
|
|
"homepage": "https://www.github.com/danvratil/qcoro",
|
|
"documentation": "https://qcoro.dvratil.cz",
|
|
"license": "MIT",
|
|
"dependencies": [
|
|
{
|
|
"name": "qtbase",
|
|
"default-features": false,
|
|
"features": [
|
|
"thread"
|
|
]
|
|
},
|
|
{
|
|
"name": "vcpkg-cmake",
|
|
"host": true
|
|
},
|
|
{
|
|
"name": "vcpkg-cmake-config",
|
|
"host": true
|
|
}
|
|
],
|
|
"default-features": [
|
|
"dbus",
|
|
"network",
|
|
"qml",
|
|
"quick",
|
|
"test",
|
|
"websockets"
|
|
],
|
|
"features": {
|
|
"dbus": {
|
|
"description": "Coroutine support for QtDBus module",
|
|
"dependencies": [
|
|
{
|
|
"name": "qtbase",
|
|
"default-features": false,
|
|
"features": [
|
|
"dbus"
|
|
]
|
|
}
|
|
]
|
|
},
|
|
"network": {
|
|
"description": "Coroutine support for QtNetwork module",
|
|
"dependencies": [
|
|
{
|
|
"name": "qtbase",
|
|
"default-features": false,
|
|
"features": [
|
|
"network"
|
|
]
|
|
}
|
|
]
|
|
},
|
|
"qml": {
|
|
"description": "Coroutine support for QtQml module",
|
|
"dependencies": [
|
|
{
|
|
"name": "qtdeclarative",
|
|
"default-features": false
|
|
}
|
|
]
|
|
},
|
|
"quick": {
|
|
"description": "Coroutine support for QtQuick module",
|
|
"dependencies": [
|
|
{
|
|
"name": "qtdeclarative",
|
|
"default-features": false
|
|
}
|
|
]
|
|
},
|
|
"test": {
|
|
"description": "Support code for easier testing of coroutines with QtTest.",
|
|
"dependencies": [
|
|
{
|
|
"name": "qtbase",
|
|
"default-features": false,
|
|
"features": [
|
|
"testlib"
|
|
]
|
|
}
|
|
]
|
|
},
|
|
"websockets": {
|
|
"description": "Coroutine support for QtWebSockets module",
|
|
"dependencies": [
|
|
{
|
|
"name": "qtwebsockets",
|
|
"default-features": false
|
|
}
|
|
]
|
|
}
|
|
}
|
|
}
|