2014-11-13 01:04:59 +02:00
|
|
|
## install the cmake files
|
|
|
|
|
|
|
|
# This variable doesn't actually do anything, but it's probably a good idea
|
|
|
|
# to have it around, so there is a place where the modules which are not installed
|
|
|
|
# are listed explicitly:
|
|
|
|
set(cmakeFilesDontInstall
|
2021-03-26 17:43:27 +02:00
|
|
|
FindMPV.cmake
|
|
|
|
FindUDev.cmake
|
2021-03-26 18:52:03 +02:00
|
|
|
FindAvahi.cmake
|
|
|
|
FindENCHANT.cmake
|
|
|
|
FindACL.cmake
|
2021-06-08 21:18:36 +03:00
|
|
|
FindLibCDIO.cmake
|
2021-07-05 09:26:28 +00:00
|
|
|
FindDevinfo.cmake
|
2022-04-14 08:04:46 +03:00
|
|
|
FindFFmpeg.cmake
|
2022-10-11 19:43:41 +03:00
|
|
|
FindLibRaw.cmake
|
2022-10-12 00:46:43 +03:00
|
|
|
FindLibJPEG.cmake
|
|
|
|
FindOpenJPEG.cmake
|
2022-12-23 20:49:34 +02:00
|
|
|
FindWebP.cmake
|
2023-06-17 09:11:52 +03:00
|
|
|
FindExiv2.cmake
|
2015-09-01 01:05:33 +03:00
|
|
|
)
|
2014-11-13 01:04:59 +02:00
|
|
|
|
|
|
|
# Explicitly list all files which will be installed.
|
|
|
|
# We don't use a GLOB anymore so we can have also cmake files here
|
|
|
|
# which are used inside kdelibs, but which don't have to be installed (and
|
|
|
|
# so become part of the public interface of kdelibs which has to be kept
|
|
|
|
# compatible).
|
|
|
|
set(cmakeFiles
|
2015-11-05 10:05:41 +02:00
|
|
|
cmake-modules-styleguide.txt
|
2015-10-29 10:09:43 +02:00
|
|
|
FindDjVuLibre.cmake
|
|
|
|
FindEPub.cmake
|
2020-10-04 09:26:42 +03:00
|
|
|
FindFFmpegThumbnailer.cmake
|
2015-09-01 01:05:33 +03:00
|
|
|
FindFontconfig.cmake
|
2015-11-05 10:05:41 +02:00
|
|
|
FindGettextPO.cmake
|
2015-09-01 01:05:33 +03:00
|
|
|
FindGLIB2.cmake
|
2021-07-14 21:49:52 +03:00
|
|
|
FindGphoto2.cmake
|
2022-05-01 15:16:15 +03:00
|
|
|
FindKmod.cmake
|
2021-02-25 22:05:47 +02:00
|
|
|
FindLibATASmart.cmake
|
2022-10-17 20:03:38 +03:00
|
|
|
FindLibDeflate.cmake
|
2021-02-15 18:43:07 +02:00
|
|
|
FindLibDRM.cmake
|
2015-09-01 01:05:33 +03:00
|
|
|
FindLibLZMA.cmake
|
2015-11-05 10:05:41 +02:00
|
|
|
FindLIBPARTED.cmake
|
2015-10-29 10:09:43 +02:00
|
|
|
FindLibSpectre.cmake
|
2021-08-11 06:00:57 +03:00
|
|
|
FindLibTorrent.cmake
|
2022-10-17 20:03:38 +03:00
|
|
|
FindLibUSB.cmake
|
2022-04-01 16:22:59 +03:00
|
|
|
FindLightDM.cmake
|
2023-07-10 07:38:20 +03:00
|
|
|
FindLibGit2.cmake
|
2015-11-05 10:05:41 +02:00
|
|
|
FindMtp.cmake
|
|
|
|
FindPCIUTILS.cmake
|
2022-04-17 04:05:30 +03:00
|
|
|
FindPoppler.cmake
|
2015-11-05 10:05:41 +02:00
|
|
|
FindQalculate.cmake
|
|
|
|
FindRAW1394.cmake
|
|
|
|
FindSensors.cmake
|
2015-09-01 01:05:33 +03:00
|
|
|
FindSharedMimeInfo.cmake
|
2016-06-10 02:58:59 +00:00
|
|
|
FindSudo.cmake
|
2015-09-01 01:05:33 +03:00
|
|
|
FindTaglib.cmake
|
2015-10-29 10:09:43 +02:00
|
|
|
FindX11_XCB.cmake
|
2016-08-12 11:15:55 +00:00
|
|
|
FindXCB.cmake
|
2022-04-13 20:20:21 +03:00
|
|
|
kde4_exec.sh.in
|
2023-06-17 09:11:52 +03:00
|
|
|
)
|
|
|
|
|
|
|
|
install(
|
|
|
|
FILES ${cmakeFiles}
|
|
|
|
DESTINATION ${KDE4_DATA_INSTALL_DIR}/cmake/modules
|
|
|
|
)
|
|
|
|
|
|
|
|
install(
|
|
|
|
FILES
|
2015-09-01 01:05:33 +03:00
|
|
|
KDE4Defaults.cmake
|
|
|
|
KDE4Macros.cmake
|
2023-06-17 09:11:52 +03:00
|
|
|
DESTINATION ${KDE4_DATA_INSTALL_DIR}/cmake/KDELibs4
|
2015-09-01 01:05:33 +03:00
|
|
|
)
|