mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-25 00:50:22 +00:00
UI/Qt: Remove Qt networking linkage from WebContent/WebWorker
Missed in commit 1b324f3ae1
.
Note that the UI process still links Qt::Network, as it uses that infra
for autocomplete queries currently.
This commit is contained in:
parent
f610a12671
commit
8b3a5d0b96
Notes:
github-actions[bot]
2024-10-08 11:42:09 +00:00
Author: https://github.com/trflynn89 Commit: https://github.com/LadybirdBrowser/ladybird/commit/8b3a5d0b968 Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/1678
2 changed files with 2 additions and 2 deletions
|
@ -48,7 +48,7 @@ if (ENABLE_QT)
|
|||
../Qt/StringUtils.cpp
|
||||
main.cpp
|
||||
)
|
||||
target_link_libraries(WebContent PRIVATE Qt::Core Qt::Network)
|
||||
target_link_libraries(WebContent PRIVATE Qt::Core)
|
||||
target_compile_definitions(WebContent PRIVATE HAVE_QT=1)
|
||||
|
||||
if (NOT HAVE_PULSEAUDIO)
|
||||
|
|
|
@ -32,7 +32,7 @@ if (ENABLE_QT)
|
|||
../Qt/StringUtils.cpp
|
||||
main.cpp
|
||||
)
|
||||
target_link_libraries(WebWorker PRIVATE Qt::Core Qt::Network)
|
||||
target_link_libraries(WebWorker PRIVATE Qt::Core)
|
||||
target_link_libraries(WebWorker PRIVATE webworkerservice LibWebSocket)
|
||||
target_compile_definitions(WebWorker PRIVATE HAVE_QT=1)
|
||||
|
||||
|
|
Loading…
Reference in a new issue