mirror of
https://github.com/Lime3DS/Lime3DS.git
synced 2026-02-04 13:36:06 +00:00
citra_meta: search for Qt6::GuiPrivate before using it
Otherwise, the configuration on darwin fails for me with the following
error:
```
CMake Error at src/citra_meta/CMakeLists.txt:64 (target_link_libraries):
Target "citra_meta" links to:
Qt6::GuiPrivate
but the target was not found.
```
Signed-off-by: Marcin Serwin <marcin@serwin.dev>
This commit is contained in:
parent
0805711cba
commit
b038cdaf86
@ -63,6 +63,7 @@ if (ENABLE_QT AND UNIX AND NOT APPLE)
|
||||
endif()
|
||||
|
||||
if (ENABLE_QT AND APPLE)
|
||||
find_package(Qt6 REQUIRED COMPONENTS GuiPrivate)
|
||||
target_link_libraries(citra_meta PRIVATE Qt6::GuiPrivate)
|
||||
endif()
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user