diff options
| author | Laurent Montel <[email protected]> | 2022-03-15 13:30:13 +0100 |
|---|---|---|
| committer | Laurent Montel <[email protected]> | 2022-03-15 13:30:13 +0100 |
| commit | c6bccbf6de33ba907f1cddfa64dadb8cfeea4d2c (patch) | |
| tree | e94096e471e2f4aa51f6cda17290193b0c490dbc /CMakeLists.txt | |
| parent | db16b7d1cd6ec28399339d58f5f331587aafca44 (diff) | |
Fix some compile error against qt6
Diffstat (limited to 'CMakeLists.txt')
| -rw-r--r-- | CMakeLists.txt | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 021be0cf3..e19f6c233 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -69,7 +69,7 @@ find_package(KF5 ${KF5_MIN_VERSION} REQUIRED COMPONENTS WindowSystem ) -find_package(KUserFeedback 1.0.0) +find_package(KUserFeedback 1.2.0) set_package_properties(KUserFeedback PROPERTIES TYPE OPTIONAL PURPOSE "Used for submission of telemetry data" @@ -91,13 +91,13 @@ set_package_properties(KF5Activities PROPERTIES DESCRIPTION "KActivities librari find_package(Phonon4Qt${QT_MAJOR_VERSION} CONFIG REQUIRED) -find_package(PackageKitQt5) -set_package_properties(PackageKitQt5 +find_package(PackageKitQt${QT_MAJOR_VERSION}) +set_package_properties(PackageKitQt${QT_MAJOR_VERSION} PROPERTIES DESCRIPTION "Software Manager integration" TYPE OPTIONAL PURPOSE "Used in the service menu installer" ) -if(PackageKitQt5_FOUND) +if(PackageKitQt${QT_MAJOR_VERSION}_FOUND) set(HAVE_PACKAGEKIT TRUE) endif() |
