mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-12-27 10:21:07 +08:00
[qcoro] Depend on only required Qt features (#38699)
- [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.
This commit is contained in:
parent
63d9dcdd7e
commit
b09937b750
@ -1,12 +1,19 @@
|
||||
{
|
||||
"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": [
|
||||
"qtbase",
|
||||
{
|
||||
"name": "qtbase",
|
||||
"default-features": false,
|
||||
"features": [
|
||||
"thread"
|
||||
]
|
||||
},
|
||||
{
|
||||
"name": "vcpkg-cmake",
|
||||
"host": true
|
||||
@ -26,30 +33,66 @@
|
||||
],
|
||||
"features": {
|
||||
"dbus": {
|
||||
"description": "Coroutine support for QtDBus module"
|
||||
"description": "Coroutine support for QtDBus module",
|
||||
"dependencies": [
|
||||
{
|
||||
"name": "qtbase",
|
||||
"default-features": false,
|
||||
"features": [
|
||||
"dbus"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
"network": {
|
||||
"description": "Coroutine support for QtNetwork module"
|
||||
"description": "Coroutine support for QtNetwork module",
|
||||
"dependencies": [
|
||||
{
|
||||
"name": "qtbase",
|
||||
"default-features": false,
|
||||
"features": [
|
||||
"network"
|
||||
]
|
||||
}
|
||||
]
|
||||
},
|
||||
"qml": {
|
||||
"description": "Coroutine support for QtQml module",
|
||||
"dependencies": [
|
||||
"qtdeclarative"
|
||||
{
|
||||
"name": "qtdeclarative",
|
||||
"default-features": false
|
||||
}
|
||||
]
|
||||
},
|
||||
"quick": {
|
||||
"description": "Coroutine support for QtQuick module",
|
||||
"dependencies": [
|
||||
"qtdeclarative"
|
||||
{
|
||||
"name": "qtdeclarative",
|
||||
"default-features": false
|
||||
}
|
||||
]
|
||||
},
|
||||
"test": {
|
||||
"description": "Support code for easier testing of coroutines with QtTest."
|
||||
"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": [
|
||||
"qtwebsockets"
|
||||
{
|
||||
"name": "qtwebsockets",
|
||||
"default-features": false
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
|
@ -7094,7 +7094,7 @@
|
||||
},
|
||||
"qcoro": {
|
||||
"baseline": "0.10.0",
|
||||
"port-version": 0
|
||||
"port-version": 1
|
||||
},
|
||||
"qcustomplot": {
|
||||
"baseline": "2.1.1",
|
||||
|
@ -1,5 +1,10 @@
|
||||
{
|
||||
"versions": [
|
||||
{
|
||||
"git-tree": "f8b9f743a339335725fe9fe3475f584cc9654b69",
|
||||
"version": "0.10.0",
|
||||
"port-version": 1
|
||||
},
|
||||
{
|
||||
"git-tree": "98bf3c0f6c546401e5976e2d474765d838050fd3",
|
||||
"version": "0.10.0",
|
||||
|
Loading…
x
Reference in New Issue
Block a user