# SPDX-FileCopyrightText: 2014 Vishesh Handa # SPDX-FileCopyrightText: 2019 Nicolas Fella # SPDX-FileCopyrightText: 2021 Carl Schwan # SPDX-License-Identifier: LGPL-2.1-or-later # # Common Library # set(LIB_SRCS imagestorage.cpp exiv2extractor.cpp filesystemimagefetcher.cpp ${LIB_SRCS} ) add_library(kokocommon SHARED ${LIB_SRCS}) target_link_libraries(kokocommon Qt::Core Qt::Positioning Qt::Sql Qt::Svg Qt::QuickControls2 KF6::CoreAddons KF6::DBusAddons KF6::FileMetaData KF6::ConfigGui KF6::ConfigCore LibExiv2::LibExiv2 ) generate_export_header(kokocommon BASE_NAME KOKO EXPORT_FILE_NAME koko_export.h) set_target_properties(kokocommon PROPERTIES VERSION 0.0.1 SOVERSION 0.0.1 ) install(TARGETS kokocommon EXPORT KokoLibraryTargets ${KDE_INSTALL_TARGETS_DEFAULT_ARGS}) # # Application # set(koko_SRCS main.cpp openfilemodel.cpp reversegeocoder.cpp filesystemtracker.cpp processor.cpp committimer.cpp imageprocessorrunnable.cpp vectorimage.cpp controller.cpp kdtree.cpp filemenu.h filemenu.cpp resources.qrc ) kconfig_add_kcfg_files(koko_SRCS kokoconfig.kcfgc GENERATE_MOC) add_executable(koko ${koko_SRCS}) target_link_libraries(koko Qt::Quick Qt::Widgets Qt::Qml Qt::Positioning KF6::ConfigCore KF6::I18n KF6::CoreAddons KF6::KIOCore KF6::KIOWidgets KF6::ConfigWidgets kokocommon ) target_include_directories(koko PRIVATE ${CMAKE_BINARY_DIR}) if(ANDROID) target_link_libraries(koko Qt::AndroidExtras) else() target_link_libraries(koko KF6::WindowSystem) endif() target_compile_definitions(koko PRIVATE $<$,$>:QT_QML_DEBUG>) install(TARGETS koko ${KDE_INSTALL_TARGETS_DEFAULT_ARGS}) # # QML Plugin # set (qml_plugin_SRCS qmlplugins.cpp dirmodelutils.cpp openfilemodel.cpp imagelocationmodel.cpp imagefavoritesmodel.cpp imagetagsmodel.cpp imagetimemodel.cpp imagefoldermodel.cpp sortmodel.cpp imagelistmodel.cpp notificationmanager.cpp types.cpp roles.cpp fileinfo.cpp displaycolorspace.cpp ) add_library (kokoqmlplugin SHARED ${qml_plugin_SRCS}) target_link_libraries (kokoqmlplugin Qt6::Qml KF6::KIOCore KF6::KIOFileWidgets KF6::KIOWidgets KF6::GuiAddons KF6::I18n KF6::Notifications kokocommon ) install (TARGETS kokoqmlplugin DESTINATION ${KDE_INSTALL_QMLDIR}/org/kde/koko) install (FILES qmldir DESTINATION ${KDE_INSTALL_QMLDIR}/org/kde/koko) install (FILES org.kde.koko.desktop DESTINATION ${KDE_INSTALL_APPDIR}) # FIXME this needs to be adapted for Qt6 if (TARGET XCB::XCB) target_compile_definitions(kokoqmlplugin PRIVATE HAVE_X11) target_link_libraries(kokoqmlplugin XCB::XCB Qt6::GuiPrivate) endif() # # Reverse GeoLookup Data # # Packagers can download the file and put it in the tarball if (EXISTS ${CMAKE_CURRENT_SOURCE_DIR}/cities1000.zip) file(COPY ${CMAKE_CURRENT_SOURCE_DIR}/cities1000.zip DESTINATION ${CMAKE_CURRENT_BINARY_DIR}) endif() if (NOT EXISTS ${CMAKE_CURRENT_BINARY_DIR}/cities1000.zip) file (DOWNLOAD "http://download.geonames.org/export/dump/cities1000.zip" ${CMAKE_CURRENT_BINARY_DIR}/cities1000.zip SHOW_PROGRESS STATUS status ) list(GET status 0 status_code) if(NOT status_code EQUAL 0) message(FATAL_ERROR "You need to download some files separately. See the packaging section of README.md.") endif() endif() execute_process( COMMAND ${CMAKE_COMMAND} -E tar -xzf ${CMAKE_CURRENT_BINARY_DIR}/cities1000.zip WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR} ) if (EXISTS ${CMAKE_CURRENT_SOURCE_DIR}/admin1CodesASCII.txt) file(COPY ${CMAKE_CURRENT_SOURCE_DIR}/admin1CodesASCII.txt DESTINATION ${CMAKE_CURRENT_BINARY_DIR}) endif() if (NOT EXISTS ${CMAKE_CURRENT_BINARY_DIR}/admin1CodesASCII.txt) file (DOWNLOAD "http://download.geonames.org/export/dump/admin1CodesASCII.txt" ${CMAKE_CURRENT_BINARY_DIR}/admin1CodesASCII.txt SHOW_PROGRESS STATUS status ) list(GET status 0 status_code) if(NOT status_code EQUAL 0) message(FATAL_ERROR "You need to download some files separately. See the packaging section of README.md.") endif() endif() file(RENAME ${CMAKE_CURRENT_BINARY_DIR}/admin1CodesASCII.txt ${CMAKE_CURRENT_BINARY_DIR}/admin1Codes.txt) if (EXISTS ${CMAKE_CURRENT_SOURCE_DIR}/admin2Codes.txt) file(COPY ${CMAKE_CURRENT_SOURCE_DIR}/admin2Codes.txt DESTINATION ${CMAKE_CURRENT_BINARY_DIR}) endif() if (NOT EXISTS ${CMAKE_CURRENT_BINARY_DIR}/admin2Codes.txt) file (DOWNLOAD "http://download.geonames.org/export/dump/admin2Codes.txt" ${CMAKE_CURRENT_BINARY_DIR}/admin2Codes.txt SHOW_PROGRESS STATUS status ) list(GET status 0 status_code) if(NOT status_code EQUAL 0) message(FATAL_ERROR "You need to download some files separately. See the packaging section of README.md.") endif() endif() install (FILES ${CMAKE_CURRENT_BINARY_DIR}/cities1000.txt DESTINATION ${KDE_INSTALL_DATADIR}/koko) install (FILES ${CMAKE_CURRENT_BINARY_DIR}/admin1Codes.txt DESTINATION ${KDE_INSTALL_DATADIR}/koko) install (FILES ${CMAKE_CURRENT_BINARY_DIR}/admin2Codes.txt DESTINATION ${KDE_INSTALL_DATADIR}/koko) install (FILES countries.csv DESTINATION ${KDE_INSTALL_DATADIR}/koko) install (FILES koko.notifyrc DESTINATION ${KDE_INSTALL_KNOTIFYRCDIR})