mirror of
https://github.com/parchlinux/calamares.git
synced 2025-02-24 02:45:44 -05:00
CMake: can't mix KF5 and Qt6
This will fail to build because we require KDE Frameworks CoreAddons, but I don't have one just now.
This commit is contained in:
parent
2b40ab9a5b
commit
179796d598
1 changed files with 4 additions and 1 deletions
|
@ -100,7 +100,10 @@ set_target_properties(
|
|||
SOVERSION ${CALAMARES_SOVERSION}
|
||||
INTERFACE_INCLUDE_DIRECTORIES ${CMAKE_INSTALL_FULL_INCLUDEDIR}/libcalamares
|
||||
)
|
||||
target_link_libraries(calamares LINK_PUBLIC yamlcpp::yamlcpp ${qtname}::Core KF5::CoreAddons)
|
||||
target_link_libraries(calamares LINK_PUBLIC yamlcpp::yamlcpp ${qtname}::Core)
|
||||
if(NOT WITH_QT6) # TODO: Qt6
|
||||
target_link_libraries(calamares LINK_PUBLIC KF5::CoreAddons)
|
||||
endif()
|
||||
|
||||
### OPTIONAL Automount support (requires dbus)
|
||||
#
|
||||
|
|
Loading…
Add table
Reference in a new issue