2015-10-31 13:36:29 +02:00
|
|
|
project(kde-workspace)
|
2014-11-13 19:30:51 +02:00
|
|
|
|
2014-11-15 04:16:00 +02:00
|
|
|
include(CheckIncludeFiles)
|
|
|
|
include(CheckFunctionExists)
|
2016-09-01 04:09:09 +00:00
|
|
|
include(GenerateExportHeader)
|
2022-10-02 16:52:25 +03:00
|
|
|
include(FeatureSummary)
|
2014-11-15 04:16:00 +02:00
|
|
|
|
2023-06-17 18:38:55 +03:00
|
|
|
find_package(KDELibs4 4.23.0 REQUIRED)
|
2014-11-13 19:30:51 +02:00
|
|
|
|
2022-05-27 18:50:36 +03:00
|
|
|
# kdelibs requires 0.91
|
|
|
|
find_package(SharedMimeInfo 0.91)
|
2021-04-25 00:06:05 +03:00
|
|
|
set_package_properties(SharedMimeInfo PROPERTIES
|
2021-03-28 14:27:33 +03:00
|
|
|
DESCRIPTION "Shared Mime Info"
|
|
|
|
URL "http://freedesktop.org/wiki/Software/shared-mime-info"
|
|
|
|
PURPOSE "Needed for update MIME database"
|
|
|
|
TYPE REQUIRED
|
|
|
|
)
|
|
|
|
|
2022-05-14 21:28:45 +03:00
|
|
|
find_package(Sudo)
|
|
|
|
set_package_properties(Sudo PROPERTIES
|
|
|
|
DESCRIPTION "Sudo allows a system administrator to delegate authority to give certain users"
|
|
|
|
URL "https://www.sudo.ws/"
|
|
|
|
TYPE RUNTIME
|
|
|
|
PURPOSE "Needed for kdesudo to operate"
|
|
|
|
)
|
|
|
|
|
2023-09-03 21:48:19 +03:00
|
|
|
find_package(XCB)
|
|
|
|
set_package_properties(XCB PROPERTIES
|
|
|
|
DESCRIPTION "X protocol C-language Binding"
|
|
|
|
URL "http://xcb.freedesktop.org"
|
|
|
|
TYPE REQUIRED
|
|
|
|
)
|
2015-11-06 16:19:11 +02:00
|
|
|
|
2023-09-03 21:48:19 +03:00
|
|
|
find_package(X11_XCB)
|
|
|
|
set_package_properties(X11_XCB
|
|
|
|
PROPERTIES DESCRIPTION "XCB X11 protocol client library"
|
|
|
|
TYPE REQUIRED
|
|
|
|
)
|
2015-11-06 16:19:11 +02:00
|
|
|
|
2023-09-03 21:48:19 +03:00
|
|
|
find_package(X11)
|
|
|
|
set_package_properties(X11 PROPERTIES
|
|
|
|
DESCRIPTION "X11 libraries"
|
|
|
|
URL "http://www.x.org"
|
|
|
|
TYPE REQUIRED
|
|
|
|
)
|
2015-11-06 16:19:11 +02:00
|
|
|
|
2023-09-03 21:48:19 +03:00
|
|
|
add_feature_info("libXSync" X11_XSync_FOUND "The X11 synchronization may be used by KWin")
|
|
|
|
add_feature_info("libXinput" X11_Xinput_FOUND "The X11 XINPUT extension library may be used by touchpad handler")
|
|
|
|
add_feature_info("libXRes" X11_XRes_FOUND "The X Resource library may be used by ksysguard")
|
|
|
|
add_feature_info("libXext" X11_dpms_FOUND "The X extensions library may be used by kscreensaver")
|
2015-11-06 16:19:11 +02:00
|
|
|
|
2023-09-03 21:48:19 +03:00
|
|
|
if(NOT X11_Xau_FOUND)
|
|
|
|
message(FATAL_ERROR "The X11 authorization extension library was not found. Required for authorization in kworkspace library")
|
|
|
|
endif()
|
|
|
|
if(NOT X11_Xdamage_FOUND)
|
|
|
|
message(FATAL_ERROR "The X11 damaged region extension library was not found. Required for compositing support in KWin")
|
|
|
|
endif()
|
|
|
|
if(NOT X11_Xrender_FOUND)
|
|
|
|
message(FATAL_ERROR " The X Rendering extension client library was not found. Required for XRender Compositing backend in KWin")
|
|
|
|
endif()
|
|
|
|
if(NOT X11_Xfixes_FOUND)
|
|
|
|
message(FATAL_ERROR "The X11 miscellaneous 'fixes' extension library was not found. Required for XRender Compositing backend in KWin")
|
|
|
|
endif()
|
|
|
|
if(NOT X11_Xrandr_FOUND)
|
|
|
|
message(FATAL_ERROR "The X11 RandR extension library was not found. Required for Multi Screen Support")
|
|
|
|
endif()
|
|
|
|
if(NOT X11_Xcursor_FOUND)
|
|
|
|
message(FATAL_ERROR "The X11 cursor management library was not found. Required for desktop effects support in KWin")
|
|
|
|
endif()
|
2014-11-13 19:30:51 +02:00
|
|
|
|
2022-10-02 13:19:57 +03:00
|
|
|
kde4_optional_find_package(OpenGL)
|
2021-03-26 21:40:56 +02:00
|
|
|
set_package_properties(OpenGL PROPERTIES
|
|
|
|
DESCRIPTION "The OpenGL libraries"
|
|
|
|
URL "http://www.opengl.org"
|
2022-04-12 22:07:48 +03:00
|
|
|
PURPOSE "OpenGL info module"
|
2021-03-26 21:40:56 +02:00
|
|
|
TYPE OPTIONAL
|
|
|
|
)
|
|
|
|
|
2022-10-02 13:19:57 +03:00
|
|
|
kde4_optional_find_package(LibDRM)
|
2021-03-26 21:40:56 +02:00
|
|
|
set_package_properties(LibDRM PROPERTIES
|
|
|
|
DESCRIPTION "Userspace interface to kernel DRM services"
|
|
|
|
URL "https://dri.freedesktop.org/wiki/"
|
|
|
|
TYPE OPTIONAL
|
|
|
|
PURPOSE "OpenGL info module"
|
|
|
|
)
|
|
|
|
|
2022-10-02 13:19:57 +03:00
|
|
|
kde4_optional_find_package(Freetype)
|
2020-02-24 19:41:26 +00:00
|
|
|
set_package_properties(Freetype PROPERTIES
|
|
|
|
DESCRIPTION "Freely available software library to render fonts"
|
|
|
|
URL "https://www.freetype.org"
|
|
|
|
PURPOSE "Needed to build font configuration and installation tools"
|
|
|
|
TYPE OPTIONAL
|
|
|
|
)
|
|
|
|
|
2022-10-02 13:19:57 +03:00
|
|
|
kde4_optional_find_package(Fontconfig)
|
2015-11-06 16:19:11 +02:00
|
|
|
set_package_properties(Fontconfig PROPERTIES
|
|
|
|
DESCRIPTION "Font access configuration library"
|
|
|
|
URL "http://www.freedesktop.org/wiki/Software/fontconfig"
|
|
|
|
PURPOSE "Needed to build font configuration and installation tools"
|
|
|
|
TYPE OPTIONAL
|
|
|
|
)
|
2014-11-13 19:30:51 +02:00
|
|
|
|
2022-10-02 13:19:57 +03:00
|
|
|
kde4_optional_find_package(LibUSB)
|
2021-03-26 21:40:56 +02:00
|
|
|
set_package_properties(LibUSB PROPERTIES
|
|
|
|
DESCRIPTION "User level access to USB devices"
|
2022-04-27 10:46:45 +03:00
|
|
|
URL "https://libusb.info/"
|
2021-03-26 21:40:56 +02:00
|
|
|
TYPE OPTIONAL
|
2022-04-27 10:46:45 +03:00
|
|
|
PURPOSE "Provides Logitech mouse support in KControl and USB devices information"
|
2021-03-26 21:40:56 +02:00
|
|
|
)
|
|
|
|
|
2022-10-02 13:19:57 +03:00
|
|
|
kde4_optional_find_package(Kmod)
|
2022-05-01 14:18:39 +03:00
|
|
|
set_package_properties(Kmod PROPERTIES
|
|
|
|
DESCRIPTION "Set of tools to handle common tasks with Linux kernel modules"
|
|
|
|
URL "https://git.kernel.org/pub/scm/utils/kernel/kmod/kmod.git/"
|
|
|
|
TYPE OPTIONAL
|
|
|
|
PURPOSE "Kernel modules information"
|
|
|
|
)
|
2022-10-02 13:19:57 +03:00
|
|
|
kde4_optional_find_package(PCIUTILS)
|
2021-03-26 21:40:56 +02:00
|
|
|
set_package_properties(PCIUTILS PROPERTIES
|
|
|
|
DESCRIPTION "PciUtils is a library for direct access to PCI slots"
|
|
|
|
URL "http://atrey.karlin.mff.cuni.cz/~mj/pciutils.shtml"
|
|
|
|
TYPE OPTIONAL
|
2021-07-14 22:05:06 +03:00
|
|
|
PURPOSE "View PCI details in kinfocenter"
|
2021-03-26 21:40:56 +02:00
|
|
|
)
|
|
|
|
|
2022-10-02 13:19:57 +03:00
|
|
|
kde4_optional_find_package(RAW1394)
|
2021-03-26 21:40:56 +02:00
|
|
|
set_package_properties(RAW1394 PROPERTIES
|
|
|
|
DESCRIPTION "library for direct access to IEEE 1394 bus"
|
|
|
|
URL "http://www.linux1394.org/"
|
|
|
|
TYPE OPTIONAL
|
2021-07-14 22:05:06 +03:00
|
|
|
PURPOSE "View FireWire devices in kinfocenter"
|
2021-03-26 21:40:56 +02:00
|
|
|
)
|
|
|
|
|
2022-10-02 13:19:57 +03:00
|
|
|
kde4_optional_find_package(Mtp 1.1.2)
|
2021-03-26 21:40:56 +02:00
|
|
|
set_package_properties(Mtp PROPERTIES
|
|
|
|
DESCRIPTION "the library implementation of the Media Transfer Protocol"
|
|
|
|
URL "http://libmtp.sourceforge.net/"
|
|
|
|
TYPE OPTIONAL
|
|
|
|
PURPOSE "Needed to build the MTP kioslave"
|
|
|
|
)
|
|
|
|
|
2022-10-02 13:19:57 +03:00
|
|
|
kde4_optional_find_package(Gphoto2 2.5)
|
2021-07-14 22:05:06 +03:00
|
|
|
set_package_properties(Gphoto2 PROPERTIES
|
|
|
|
DESCRIPTION "Free, redistributable, ready to use set of digital camera software applications"
|
|
|
|
URL "http://www.gphoto.org/"
|
|
|
|
TYPE OPTIONAL
|
|
|
|
PURPOSE "Needed to build camera kioslave"
|
|
|
|
)
|
|
|
|
|
2022-10-03 23:51:12 +03:00
|
|
|
kde4_optional_find_package(EPub)
|
|
|
|
set_package_properties(EPub PROPERTIES
|
|
|
|
DESCRIPTION "A library for reading EPub documents"
|
|
|
|
URL "https://sourceforge.net/projects/ebook-tools/"
|
|
|
|
TYPE RECOMMENDED
|
|
|
|
PURPOSE "Provides support for eBook in the thumbnail KIO slave"
|
|
|
|
)
|
|
|
|
|
2022-12-12 17:46:44 +02:00
|
|
|
kde4_optional_find_package(DjVuLibre)
|
|
|
|
set_package_properties(DjVuLibre PROPERTIES
|
|
|
|
DESCRIPTION "Open source DjVu library"
|
|
|
|
URL "https://djvu.sourceforge.net/"
|
|
|
|
TYPE RECOMMENDED
|
|
|
|
PURPOSE "Provides support for DjVu in the thumbnail KIO slave"
|
|
|
|
)
|
|
|
|
|
2022-10-02 13:19:57 +03:00
|
|
|
kde4_optional_find_package(Sensors)
|
2021-03-26 21:40:56 +02:00
|
|
|
set_package_properties(Sensors PROPERTIES
|
|
|
|
DESCRIPTION "Linux hardware monitoring"
|
|
|
|
URL "https://hwmon.wiki.kernel.org/lm_sensors"
|
|
|
|
PURPOSE "Sensors feedback in ksysguard"
|
|
|
|
TYPE OPTIONAL
|
|
|
|
)
|
|
|
|
|
2022-10-02 13:19:57 +03:00
|
|
|
kde4_optional_find_package(Qalculate)
|
2021-03-26 21:40:56 +02:00
|
|
|
set_package_properties(Qalculate PROPERTIES
|
|
|
|
DESCRIPTION "Qalculate Library"
|
|
|
|
URL "http://qalculate.sourceforge.net"
|
|
|
|
TYPE OPTIONAL
|
|
|
|
PURPOSE "Needed to enable advanced features of the calculator runner"
|
|
|
|
)
|
|
|
|
|
2022-10-02 13:19:57 +03:00
|
|
|
kde4_optional_find_package(LightDM)
|
2022-04-01 16:31:45 +03:00
|
|
|
set_package_properties(LightDM PROPERTIES
|
|
|
|
DESCRIPTION "Cross-desktop display manager"
|
|
|
|
URL "https://github.com/canonical/lightdm"
|
|
|
|
TYPE OPTIONAL
|
|
|
|
PURPOSE "Needed for the LightDM greeter"
|
|
|
|
)
|
|
|
|
|
2023-07-10 06:14:12 +03:00
|
|
|
kde4_optional_find_package(LibGit2)
|
|
|
|
set_package_properties(LibGit2 PROPERTIES
|
|
|
|
DESCRIPTION "Portable, pure C implementation of the Git core methods"
|
|
|
|
URL "https://libgit2.org/"
|
|
|
|
TYPE OPTIONAL
|
|
|
|
PURPOSE "Needed for the Dolphin Git plugin"
|
|
|
|
)
|
|
|
|
|
2023-09-20 18:17:36 +03:00
|
|
|
kde4_optional_find_package(ALSA)
|
|
|
|
set_package_properties(ALSA PROPERTIES
|
|
|
|
DESCRIPTION "Advanced Linux Sound Architecture"
|
|
|
|
URL "https://alsa-project.org/wiki/Main_Page"
|
|
|
|
PURPOSE "Needed for Plasma mixer applet"
|
|
|
|
)
|
|
|
|
|
2021-03-26 21:40:56 +02:00
|
|
|
find_program(WRESTOOL_EXECUTABLE wrestool)
|
|
|
|
add_feature_info(wrestool
|
|
|
|
WRESTOOL_EXECUTABLE
|
|
|
|
"ICO thumbnails support in KIO slave"
|
|
|
|
)
|
|
|
|
|
2022-05-14 21:28:45 +03:00
|
|
|
find_program(CTAGS_EXECUTABLE ctags ctags-universal ctags-exuberant exctags uctags)
|
|
|
|
add_feature_info(ctags
|
|
|
|
CTAGS_EXECUTABLE
|
|
|
|
"Code indexing support in Kate"
|
|
|
|
)
|
|
|
|
|
|
|
|
find_program(CPPCHECK_EXECUTABLE cppcheck)
|
|
|
|
add_feature_info(cppcheck
|
|
|
|
CPPCHECK_EXECUTABLE
|
|
|
|
"Code analysis support in Kate"
|
|
|
|
)
|
|
|
|
|
|
|
|
find_program(RZSZ_EXECUTABLE NAMES rz lrz)
|
|
|
|
add_feature_info(rzsz
|
|
|
|
RZSZ_EXECUTABLE
|
|
|
|
"ZModem support in Konsole"
|
|
|
|
)
|
|
|
|
|
2022-10-28 04:23:31 +03:00
|
|
|
find_program(LSOF_EXECUTABLE lsof)
|
|
|
|
add_feature_info(lsof
|
|
|
|
LSOF_EXECUTABLE
|
|
|
|
"Open files widget (KLsofWidget)"
|
|
|
|
)
|
|
|
|
|
2022-12-12 04:23:54 +02:00
|
|
|
find_program(XKILL_EXECUTABLE xkill)
|
|
|
|
add_feature_info(xkill
|
|
|
|
XKILL_EXECUTABLE
|
|
|
|
"Window killing support in KWin"
|
|
|
|
)
|
|
|
|
|
2023-09-08 08:54:59 +03:00
|
|
|
find_program(EJECT_EXECUTABLE NAMES eject cdcontrol cdio)
|
|
|
|
add_feature_info(eject
|
|
|
|
EJECT_EXECUTABLE
|
|
|
|
"Eject CD and DVD devices"
|
|
|
|
)
|
|
|
|
|
2014-11-13 19:30:51 +02:00
|
|
|
include(ConfigureChecks.cmake)
|
2016-04-25 15:49:47 +00:00
|
|
|
configure_file(config-unix.h.cmake ${CMAKE_BINARY_DIR}/config-unix.h )
|
|
|
|
configure_file(config-X11.h.cmake ${CMAKE_BINARY_DIR}/config-X11.h )
|
2014-11-15 05:21:19 +02:00
|
|
|
if(NOT CMAKE_INSTALL_PREFIX STREQUAL "/usr")
|
|
|
|
set(EXPORT_XCURSOR_PATH "XCURSOR_PATH=${CMAKE_INSTALL_PREFIX}/share/icons:$XCURSOR_PATH\":~/.icons:/usr/share/icons:/usr/share/pixmaps:/usr/X11R6/lib/X11/icons\"; export XCURSOR_PATH")
|
|
|
|
endif(NOT CMAKE_INSTALL_PREFIX STREQUAL "/usr")
|
2016-04-25 15:49:47 +00:00
|
|
|
configure_file(startkde.cmake ${CMAKE_BINARY_DIR}/startkde @ONLY)
|
|
|
|
configure_file(config-workspace.h.cmake ${CMAKE_BINARY_DIR}/config-workspace.h )
|
2014-11-13 19:30:51 +02:00
|
|
|
|
2016-04-25 15:49:47 +00:00
|
|
|
add_definitions(${QT_DEFINITIONS} ${KDE4_DEFINITIONS})
|
|
|
|
include_directories(${CMAKE_SOURCE_DIR} ${CMAKE_BINARY_DIR} ${KDE4_INCLUDES} ${CMAKE_SOURCE_DIR}/libs)
|
2014-11-13 19:30:51 +02:00
|
|
|
|
|
|
|
# libs
|
|
|
|
add_subdirectory(libs)
|
2014-11-18 01:17:22 +00:00
|
|
|
|
2021-03-26 21:40:56 +02:00
|
|
|
add_subdirectory(systemsettings)
|
2014-11-13 19:30:51 +02:00
|
|
|
|
|
|
|
# core apps
|
2021-03-26 21:40:56 +02:00
|
|
|
add_subdirectory(kwin)
|
|
|
|
add_subdirectory(ksmserver)
|
2022-04-12 22:07:48 +03:00
|
|
|
add_subdirectory(kscreensaver)
|
2021-03-26 21:40:56 +02:00
|
|
|
|
|
|
|
add_subdirectory(qguiplatformplugin_kde)
|
|
|
|
add_subdirectory(ksysguard)
|
|
|
|
|
|
|
|
add_subdirectory(kcontrol)
|
|
|
|
add_subdirectory(kmenuedit)
|
|
|
|
add_subdirectory(kinfocenter)
|
2014-11-18 01:17:22 +00:00
|
|
|
|
2021-03-26 21:40:56 +02:00
|
|
|
add_subdirectory(kcminit)
|
2014-11-18 01:17:22 +00:00
|
|
|
|
2022-04-01 16:31:45 +03:00
|
|
|
if (LightDM_FOUND)
|
|
|
|
add_subdirectory(kgreeter)
|
|
|
|
endif(LightDM_FOUND)
|
2014-11-13 19:30:51 +02:00
|
|
|
|
2014-11-15 05:21:19 +02:00
|
|
|
# data
|
2021-03-26 21:40:56 +02:00
|
|
|
add_subdirectory(cursors)
|
2014-11-13 19:30:51 +02:00
|
|
|
|
2021-03-26 21:40:56 +02:00
|
|
|
add_subdirectory(plasma)
|
|
|
|
add_subdirectory(kstyles)
|
2014-11-13 19:30:51 +02:00
|
|
|
|
2023-06-13 05:32:53 +03:00
|
|
|
# Imported from kde-runtime and other sub-projects
|
2021-03-26 21:40:56 +02:00
|
|
|
add_subdirectory(menu)
|
|
|
|
add_subdirectory(knotify)
|
|
|
|
add_subdirectory(soliduiserver)
|
2021-07-12 01:49:18 +03:00
|
|
|
add_subdirectory(solid-hardware)
|
2021-03-26 21:40:56 +02:00
|
|
|
add_subdirectory(kcmshell)
|
|
|
|
add_subdirectory(kioslave)
|
|
|
|
add_subdirectory(kurifilter-plugins)
|
|
|
|
add_subdirectory(kquitapp)
|
2014-11-15 04:16:00 +02:00
|
|
|
if (Q_WS_X11)
|
2021-03-26 21:40:56 +02:00
|
|
|
add_subdirectory(kstart)
|
2014-11-15 04:16:00 +02:00
|
|
|
endif (Q_WS_X11)
|
2023-06-13 05:32:53 +03:00
|
|
|
# Imported from kde-baseapps
|
2022-05-14 21:28:45 +03:00
|
|
|
add_subdirectory(dolphin)
|
|
|
|
add_subdirectory(kate)
|
|
|
|
add_subdirectory(kdepasswd)
|
|
|
|
add_subdirectory(kdesudo)
|
|
|
|
add_subdirectory(kdialog)
|
|
|
|
add_subdirectory(keditbookmarks)
|
|
|
|
add_subdirectory(kfind)
|
2023-06-13 05:32:53 +03:00
|
|
|
add_subdirectory(konsole)
|
|
|
|
# Goodies
|
2022-05-14 21:28:45 +03:00
|
|
|
add_subdirectory(kmediaplayer)
|
2022-10-15 15:25:25 +03:00
|
|
|
add_subdirectory(kmail)
|
2023-06-13 05:32:53 +03:00
|
|
|
add_subdirectory(kfreespace)
|
2014-11-15 04:16:00 +02:00
|
|
|
# Background processes
|
2021-03-26 21:40:56 +02:00
|
|
|
add_subdirectory(kdontchangethehostname)
|
2014-11-15 04:16:00 +02:00
|
|
|
# Command-line tools (e.g. for shell scripts)
|
2021-03-26 21:40:56 +02:00
|
|
|
add_subdirectory(kdeeject)
|
|
|
|
add_subdirectory(kfile)
|
|
|
|
add_subdirectory(kiconfinder)
|
|
|
|
add_subdirectory(kioclient)
|
|
|
|
add_subdirectory(kioexec)
|
|
|
|
add_subdirectory(ktraderclient)
|
|
|
|
add_subdirectory(kreadconfig)
|
|
|
|
add_subdirectory(kmimetypefinder)
|
2014-11-15 04:16:00 +02:00
|
|
|
# UI Helper applications
|
2023-08-03 11:32:15 +03:00
|
|
|
add_subdirectory(kcrash)
|
2021-03-26 21:40:56 +02:00
|
|
|
add_subdirectory(knetattach)
|
2022-05-09 15:35:44 +03:00
|
|
|
add_subdirectory(kdirshare)
|
2021-03-26 21:40:56 +02:00
|
|
|
add_subdirectory(keditfiletype)
|
2014-11-15 04:16:00 +02:00
|
|
|
# Default settings, content and config
|
2021-03-26 21:40:56 +02:00
|
|
|
add_subdirectory(l10n)
|
|
|
|
add_subdirectory(kde-menu)
|
2014-11-15 04:16:00 +02:00
|
|
|
|
2014-11-13 19:30:51 +02:00
|
|
|
########### install files ###############
|
2020-02-08 19:29:32 +00:00
|
|
|
# install(PROGRAMS ${CMAKE_CURRENT_SOURCE_DIR}/kde4 DESTINATION ${KDE4_BIN_INSTALL_DIR})
|
|
|
|
install(PROGRAMS ${CMAKE_BINARY_DIR}/startkde DESTINATION ${KDE4_BIN_INSTALL_DIR})
|
2014-11-13 19:30:51 +02:00
|
|
|
|
2015-11-02 17:58:57 +02:00
|
|
|
set(KDE4WORKSPACE_TARGET_PREFIX KDE4Workspace::)
|
2014-11-13 19:30:51 +02:00
|
|
|
|
2015-11-02 17:57:05 +02:00
|
|
|
configure_file(
|
|
|
|
KDE4WorkspaceConfig.cmake.in
|
2016-04-25 15:49:47 +00:00
|
|
|
"${CMAKE_BINARY_DIR}/KDE4WorkspaceConfig.cmake"
|
2015-11-02 17:57:05 +02:00
|
|
|
@ONLY
|
|
|
|
)
|
|
|
|
configure_file(
|
2023-06-17 18:38:55 +03:00
|
|
|
KDE4WorkspaceConfigVersion.cmake.in
|
|
|
|
"${CMAKE_BINARY_DIR}/KDE4WorkspaceConfigVersion.cmake"
|
2015-11-02 17:57:05 +02:00
|
|
|
@ONLY
|
|
|
|
)
|
|
|
|
|
|
|
|
install(
|
|
|
|
FILES
|
2016-04-25 15:49:47 +00:00
|
|
|
${CMAKE_BINARY_DIR}/KDE4WorkspaceConfig.cmake
|
2023-06-17 18:38:55 +03:00
|
|
|
${CMAKE_BINARY_DIR}/KDE4WorkspaceConfigVersion.cmake
|
|
|
|
DESTINATION ${KDE4_DATA_INSTALL_DIR}/cmake/KDE4Workspace
|
2015-11-02 17:57:05 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
install(
|
2023-06-18 03:59:39 +03:00
|
|
|
EXPORT kdeworkspaceTargets
|
2015-11-02 17:57:05 +02:00
|
|
|
NAMESPACE ${KDE4WORKSPACE_TARGET_PREFIX}
|
2023-06-17 19:33:35 +03:00
|
|
|
DESTINATION ${KDE4_DATA_INSTALL_DIR}/cmake/KDE4Workspace
|
2023-06-18 03:59:39 +03:00
|
|
|
FILE KDE4WorkspaceTargets.cmake
|
2015-11-02 17:57:05 +02:00
|
|
|
)
|
2014-11-13 19:30:51 +02:00
|
|
|
|
2023-06-17 19:27:47 +03:00
|
|
|
feature_summary(WHAT ALL FATAL_ON_MISSING_REQUIRED_PACKAGES)
|