diff options
author | Christophe Giboudeaux <cgiboudeaux@gmx.com> | 2013-09-09 17:34:20 +0200 |
---|---|---|
committer | Christophe Giboudeaux <cgiboudeaux@gmx.com> | 2013-09-09 17:34:20 +0200 |
commit | 8d08d7a613929ab116dda008309c5712be74f2d8 (patch) | |
tree | 90aacc383bf52569d794c185e90509cebeb620d0 /attic | |
parent | c5597c4cf761eeb9d895fe99e706c513667a8dd9 (diff) | |
download | extra-cmake-modules-8d08d7a613929ab116dda008309c5712be74f2d8.tar.gz extra-cmake-modules-8d08d7a613929ab116dda008309c5712be74f2d8.tar.bz2 |
CMakeLists.txt is not needed here
Diffstat (limited to 'attic')
-rw-r--r-- | attic/modules/CMakeLists.txt | 145 |
1 files changed, 0 insertions, 145 deletions
diff --git a/attic/modules/CMakeLists.txt b/attic/modules/CMakeLists.txt deleted file mode 100644 index c832bedc..00000000 --- a/attic/modules/CMakeLists.txt +++ /dev/null @@ -1,145 +0,0 @@ -## install the cmake files - -set(module_install_dir ${DATA_INSTALL_DIR}/cmake/modules ) - -# maybe FindHUNSPELL.cmake doesn't have to be installed ? -# 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 explicitely: -set(cmakeFilesDontInstall - FindHUpnp.cmake - FindPolkitQt.cmake - FindPolkitQt-1.cmake - FindUDev.cmake - ) - -# Explicitely 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 CheckCXXSourceCompiles.cmake - CheckCXXSourceRuns.cmake - CheckPointerMember.cmake - CheckPrototypeExists.cmake - CheckStructMember.cmake - FindACL.cmake - FindAGG.cmake - FindAlsa.cmake - FindAvahi.cmake - FindBerkeleyDB.cmake - FindCarbon.cmake - FindDBusMenuQt.cmake - FindDNSSD.cmake - FindENCHANT.cmake - FindEigen.cmake - FindEigen2.cmake - FindExiv2.cmake - FindFAM.cmake - FindFFmpeg.cmake - FindFlac.cmake - FindFontconfig.cmake - FindGLIB2.cmake - FindGMP.cmake - FindGObject.cmake - FindGSSAPI.cmake - FindGStreamer.cmake - FindGphoto2.cmake - FindHUNSPELL.cmake - FindIOKit.cmake - FindKDE4Workspace.cmake - FindKDEWIN32.cmake - FindKDEWIN_Packager.cmake - FindKDEWin.cmake - FindKDevPlatform.cmake - FindKdcraw.cmake - FindKdeMultimedia.cmake - FindKexiv2.cmake - FindKipi.cmake - FindKopete.cmake - FindKorundum.cmake - FindLCMS.cmake - FindLibArt.cmake - FindLibAttica.cmake - FindLibKonq.cmake - FindLibLZMA.cmake - FindLibPython.py - FindLibintl.cmake - FindLibraryWithDebug.cmake - FindLinuxWirelesstools.cmake - FindMusicBrainz.cmake - FindMySQL.cmake - FindNepomuk.cmake - FindNetworkManager.cmake - FindOggVorbis.cmake - FindOpenEXR.cmake - FindPCRE.cmake - FindPhonon.cmake - FindPopplerQt4.cmake - FindPulseAudio.cmake - FindPyKDE4.cmake - FindPyKDE4.py - FindPyQt.py - FindPyQt4.cmake - FindPythonLibrary.cmake - FindQCA2.cmake - FindQImageBlitz.cmake - FindQt4.cmake - FindSIP.cmake - FindSIP.py - FindSamba.cmake - FindSane.cmake - FindSasl2.cmake - FindSharedDesktopOntologies.cmake - FindSharedMimeInfo.cmake - FindSqlite.cmake - FindStrigi.cmake - FindTaglib.cmake - FindUSB.cmake - FindWcecompat.cmake - FindXKB.cmake - FindXine.cmake - FindXmms.cmake - HandleImportedTargetsInCMakeRequiredLibraries.cmake - MacroAppendIf.cmake - MacroBoolTo01.cmake - MacroEnsureOutOfSourceBuild.cmake - MacroLibrary.cmake - NepomukAddOntologyClasses.cmake - NepomukMacros.cmake - PythonCompile.py - PythonMacros.cmake - Qt4ConfigDependentSettings.cmake - Qt4Macros.cmake - SIPMacros.cmake - check_installed_exports_file.cmake - cmake-modules-styleguide.txt - config-alsa.h.cmake - create_exe_symlink.cmake - kde4_cmake_uninstall.cmake.in - kde4_exec_via_sh.cmake - ) - -if (KDE4_ENABLE_UAC_MANIFEST) - set(cmakeFiles ${cmakeFiles} Win32.Manifest.in ) -endif (KDE4_ENABLE_UAC_MANIFEST) - -install(FILES ${cmakeFiles} - DESTINATION ${module_install_dir} ) - - -# the files listed here will be removed by remove_obsoleted_cmake_files.cmake, Alex -#set(FILES_TO_REMOVE -#) - -#install(SCRIPT ${CMAKE_CURRENT_BINARY_DIR}/remove_files.cmake ) - -#file(WRITE ${CMAKE_CURRENT_BINARY_DIR}/remove_files.cmake "#generated by cmake, dont edit\n\n") -#foreach ( _current_FILE ${FILES_TO_REMOVE}) -# file(APPEND ${CMAKE_CURRENT_BINARY_DIR}/remove_files.cmake "message(STATUS \"Removing ${_current_FILE}\" )\n" ) -# file(APPEND ${CMAKE_CURRENT_BINARY_DIR}/remove_files.cmake "exec_program( ${CMAKE_COMMAND} ARGS -E remove ${_current_FILE} OUTPUT_VARIABLE _dummy)\n" ) -#endforeach ( _current_FILE) - -# create and install a man page for the kdelibs cmake modules -add_custom_target(KDECMakeModulesManPage ALL COMMAND ${CMAKE_COMMAND} -DCMAKE_MODULE_PATH=${CMAKE_CURRENT_SOURCE_DIR} --help-custom-modules ${CMAKE_CURRENT_BINARY_DIR}/kdecmake.1) -install(FILES ${CMAKE_CURRENT_BINARY_DIR}/kdecmake.1 DESTINATION "${MAN_INSTALL_DIR}/man1") |