X-Git-Url: https://cloud.milkyroute.net/gitweb/dolphin.git/blobdiff_plain/1af2241243f4aed24b68ffee048091a55f63a1f2..9f2bb143b5ee00eddaaebbfe83da2f2da9f18863:/CMakeLists.txt diff --git a/CMakeLists.txt b/CMakeLists.txt index e551fcc66..4bb1c4398 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -8,7 +8,7 @@ set (KDE_APPLICATIONS_VERSION "${KDE_APPLICATIONS_VERSION_MAJOR}.${KDE_APPLICATI project(Dolphin VERSION ${KDE_APPLICATIONS_VERSION}) set(QT_MIN_VERSION "5.8.0") -set(KF5_MIN_VERSION "5.53.0") +set(KF5_MIN_VERSION "5.56.0") # ECM setup find_package(ECM ${KF5_MIN_VERSION} CONFIG REQUIRED) @@ -71,20 +71,20 @@ find_package(KF5 ${KF5_MIN_VERSION} OPTIONAL_COMPONENTS find_package(Phonon4Qt5 CONFIG REQUIRED) -find_package(KF5Baloo 4.97) +find_package(KF5Baloo ${KF5_MIN_VERSION}) set_package_properties(KF5Baloo PROPERTIES DESCRIPTION "Baloo Core libraries" URL "http://www.kde.org" TYPE OPTIONAL PURPOSE "For adding desktop-wide search and tagging support to dolphin" ) -find_package(KF5BalooWidgets 18.07.70) +find_package(KF5BalooWidgets 18.08.0) set_package_properties(KF5BalooWidgets PROPERTIES DESCRIPTION "Baloos Widgets" URL "http://www.kde.org" TYPE OPTIONAL ) -find_package(KF5FileMetaData 5.19.0) +find_package(KF5FileMetaData ${KF5_MIN_VERSION}) set_package_properties(KF5FileMetaData PROPERTIES URL "https://projects.kde.org/kfilemetadata" TYPE OPTIONAL @@ -98,6 +98,13 @@ else() message(WARNING "Baloo packages not found. They are needed for the metadata features of Dolphin (including the information panel).") endif() +# TODO: drop HAVE_TERMINAL once we are sure the terminal panel works on Windows too. +if(WIN32) + set(HAVE_TERMINAL FALSE) +else() + set(HAVE_TERMINAL TRUE) +endif() + add_subdirectory(src) add_subdirectory(doc)