kdeconnect-kde/app/CMakeLists.txt
Alexander Lohnau f57d59e605 Fix runtime issues with Qt6
To have the code bits reusable, they are defined as cmake variables.
In order to make the relative paths work and avoid touching every line
from the QRC, the resulting file is put into the source dir.
2023-07-20 13:32:07 +03:00

40 lines
1.7 KiB
CMake

configure_file(qml/main.qml ${CMAKE_CURRENT_BINARY_DIR}/qml/main.qml)
configure_file(qml/DevicePage.qml ${CMAKE_CURRENT_BINARY_DIR}/qml/DevicePage.qml)
configure_file(qml/FindDevicesPage.qml ${CMAKE_CURRENT_BINARY_DIR}/qml/FindDevicesPage.qml)
configure_file(resources.qrc.in ${CMAKE_CURRENT_SOURCE_DIR}/resources.generated.qrc)
qt_add_resources(kdeconnect_SRCS resources.generated.qrc)
qt_add_resources(kdeconnect_custom_icons_SRCS ${CMAKE_SOURCE_DIR}/icons/custom_icons.qrc)
ecm_setup_version(${PROJECT_VERSION}
VARIABLE_PREFIX KDE_CONNECT
VERSION_HEADER ${CMAKE_CURRENT_BINARY_DIR}/kdeconnect-version.h
)
if (WIN32)
include(ECMAddAppIcon)
ecm_add_app_icon(kdeconnect_SRCS ICONS
${CMAKE_SOURCE_DIR}/icons/app/sc-apps-kdeconnect.svg
${CMAKE_SOURCE_DIR}/icons/app/16-apps-kdeconnect.png
${CMAKE_SOURCE_DIR}/icons/app/24-apps-kdeconnect.png
${CMAKE_SOURCE_DIR}/icons/app/32-apps-kdeconnect.png
${CMAKE_SOURCE_DIR}/icons/app/48-apps-kdeconnect.png
${CMAKE_SOURCE_DIR}/icons/app/64-apps-kdeconnect.png
${CMAKE_SOURCE_DIR}/icons/app/128-apps-kdeconnect.png
${CMAKE_SOURCE_DIR}/icons/app/256-apps-kdeconnect.png
${CMAKE_SOURCE_DIR}/icons/app/1024-apps-kdeconnect.png
)
endif()
ecm_find_qmlmodule(org.kde.kirigamiaddons.labs.mobileform 0.1)
add_executable(kdeconnect-app
main.cpp
${kdeconnect_SRCS}
${kdeconnect_custom_icons_SRCS}
)
target_link_libraries(kdeconnect-app Qt::Quick Qt::QuickControls2 Qt::Widgets KF${QT_MAJOR_VERSION}::CoreAddons KF${QT_MAJOR_VERSION}::I18n KF${QT_MAJOR_VERSION}::KCMUtils)
install(TARGETS kdeconnect-app ${KDE_INSTALL_TARGETS_DEFAULT_ARGS})
install(PROGRAMS org.kde.kdeconnect.app.desktop DESTINATION ${KDE_INSTALL_APPDIR})