diff options
| author | Frank Reininghaus <[email protected]> | 2016-02-17 22:10:54 +0100 |
|---|---|---|
| committer | Frank Reininghaus <[email protected]> | 2016-02-17 22:10:54 +0100 |
| commit | 6bc4f18f60f9acceb2b4a0338da35b1a04340a3f (patch) | |
| tree | 2689a9d6e202adf1b95b522d956656aa85ec87f1 | |
| parent | 6c5930c229c8b96aae45e19ad4b7a1c57caa6ddc (diff) | |
Make KFileMetaData optional again
In 15b20cd077c6743bb5ec947f5f3e014a4a32b110, I added KFileMetaData to
the required build dependencies in order to make the version increase
in 6c5930c229c8b96aae45e19ad4b7a1c57caa6ddc effective, and ensure that
the build fails at the CMake stage if the KFileMetaData version is too
old.
However, I had missed that KFileMetaData was already an optional
dependency. This commit makes it optional again and adjusts the
required version.
Thanks to Christoph Feck for notifying me about this issue and sorry
for the stupid mistake.
CCMAIL: [email protected]
| -rw-r--r-- | CMakeLists.txt | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 8a6fcce42..c40020fed 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -66,7 +66,6 @@ find_package(KF5 ${KF5_MIN_VERSION} REQUIRED COMPONENTS WindowSystem Notifications Crash - FileMetaData ) find_package(KF5 ${KF5_MIN_VERSION} OPTIONAL_COMPONENTS Activities @@ -87,7 +86,7 @@ set_package_properties(KF5BalooWidgets PROPERTIES DESCRIPTION "Baloos Widgets" TYPE OPTIONAL ) -find_package(KF5FileMetaData 4.97) +find_package(KF5FileMetaData 5.19.0) set_package_properties(KF5FileMetaData PROPERTIES URL "https://projects.kde.org/kfilemetadata" TYPE OPTIONAL |
