Skip to content

Commit

Permalink
Merge pull request #209 from a17r/missingdep
Browse files Browse the repository at this point in the history
Add QtGui dependency if QCORO_WITH_QTQUICK=ON
  • Loading branch information
danvratil committed Jan 18, 2024
2 parents 920ca1e + ffcca7b commit 69cdf18
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ if (QCORO_WITH_QTWEBSOCKETS)
list(APPEND REQUIRED_QT_COMPONENTS WebSockets)
endif()
if (QCORO_WITH_QTQUICK)
list(APPEND REQUIRED_QT_COMPONENTS Quick QuickPrivate)
list(APPEND REQUIRED_QT_COMPONENTS Gui Quick QuickPrivate)
endif()
if (QCORO_WITH_QML)
list(APPEND REQUIRED_QT_COMPONENTS Qml)
Expand Down
2 changes: 1 addition & 1 deletion qcoro/quick/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,5 @@ add_qcoro_library(
QCORO_LINK_LIBRARIES
PUBLIC Coro Core
QT_LINK_LIBRARIES
PUBLIC Core Quick
PUBLIC Core Gui Quick
)

0 comments on commit 69cdf18

Please sign in to comment.