Skip to content

Commit

Permalink
[qtbase] add thread feature
Browse files Browse the repository at this point in the history
  • Loading branch information
dhrdlicka committed May 25, 2022
1 parent 93b3854 commit 2e6bcbb
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 3 deletions.
2 changes: 1 addition & 1 deletion ports/qtbase/portfile.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -73,9 +73,9 @@ FEATURES
"framework" FEATURE_framework
"concurrent" FEATURE_concurrent
"concurrent" FEATURE_future
"concurrent" FEATURE_thread
"dbus" FEATURE_dbus
"gui" FEATURE_gui
"thread" FEATURE_thread
"network" FEATURE_network
"sql" FEATURE_sql
"widgets" FEATURE_widgets
Expand Down
25 changes: 23 additions & 2 deletions ports/qtbase/vcpkg.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "qtbase",
"version": "6.3.0",
"port-version": 1,
"port-version": 2,
"description": "Qt Application Framework Base Module. Includes Core, GUI, Widgets, Networking, SQL, Concurrent and other essential qt components.",
"homepage": "https://www.qt.io/",
"license": null,
Expand Down Expand Up @@ -63,6 +63,7 @@
"sql-psql",
"sql-sqlite",
"testlib",
"thread",
"widgets",
"zstd"
],
Expand All @@ -84,7 +85,16 @@
]
},
"concurrent": {
"description": "Provides a high-level multi-threading API. Qt Concurrent"
"description": "Provides a high-level multi-threading API. Qt Concurrent",
"dependencies": [
{
"name": "qtbase",
"default-features": false,
"features": [
"thread"
]
}
]
},
"dbus": {
"description": "Qt D-Bus"
Expand Down Expand Up @@ -167,6 +177,14 @@
"features": [
"freetype"
]
},
{
"name": "qtbase",
"default-features": false,
"features": [
"thread"
],
"platform": "windows"
}
]
},
Expand Down Expand Up @@ -278,6 +296,9 @@
"testlib": {
"description": "Qt Testlib"
},
"thread": {
"description": "Thread support; provides QThread and related classes."
},
"vulkan": {
"description": "Enable Vulkan support"
},
Expand Down

0 comments on commit 2e6bcbb

Please sign in to comment.