diff options
| author | Mike Lothian <mike@fireburn.co.uk> | 2025-10-23 18:03:21 +0100 |
|---|---|---|
| committer | Mike Lothian <mike@fireburn.co.uk> | 2025-10-23 18:03:21 +0100 |
| commit | 3785caf55f33f2df7bb3180e774f953cd40d06cb (patch) | |
| tree | 821d6fbe1c149ae22b2a4ef62697e91286c34fa3 /src | |
| parent | ae235df7eee6b8ae2b4400c037dd697814924d5d (diff) | |
CMakeLists: Fix build with Qt6.10
Diffstat (limited to 'src')
| -rw-r--r-- | src/yuzu/CMakeLists.txt | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/yuzu/CMakeLists.txt b/src/yuzu/CMakeLists.txt index a1a7f0f60..70f408e50 100644 --- a/src/yuzu/CMakeLists.txt +++ b/src/yuzu/CMakeLists.txt @@ -389,6 +389,9 @@ endif() if (UNIX AND NOT APPLE) target_link_libraries(yuzu PRIVATE Qt6::DBus) endif() +if (NEED_QT_GUI_PRIVATE_COMPONENT) + target_link_libraries(yuzu PRIVATE Qt6::GuiPrivate) +endif() target_compile_definitions(yuzu PRIVATE # Use QStringBuilder for string concatenation to reduce |
