FindKDE3.cmake 9.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257
  1. # - Find the KDE3 include and library dirs, KDE preprocessors and define a some macros
  2. #
  3. # This module defines the following variables:
  4. # KDE3_DEFINITIONS - compiler definitions required for compiling KDE software
  5. # KDE3_INCLUDE_DIR - the KDE include directory
  6. # KDE3_INCLUDE_DIRS - the KDE and the Qt include directory, for use with INCLUDE_DIRECTORIES()
  7. # KDE3_LIB_DIR - the directory where the KDE libraries are installed, for use with LINK_DIRECTORIES()
  8. # QT_AND_KDECORE_LIBS - this contains both the Qt and the kdecore library
  9. # KDE3_DCOPIDL_EXECUTABLE - the dcopidl executable
  10. # KDE3_DCOPIDL2CPP_EXECUTABLE - the dcopidl2cpp executable
  11. # KDE3_KCFGC_EXECUTABLE - the kconfig_compiler executable
  12. # KDE3_FOUND - set to TRUE if all of the above has been found
  13. #
  14. # The following user adjustable options are provided:
  15. #
  16. # KDE3_ENABLE_FINAL - enable this for KDE-style enable-final all-in-one compilation
  17. # KDE3_BUILD_TESTS - enable this to build KDE testcases
  18. #
  19. #
  20. # It also adds the following macros (from KDE3Macros.cmake)
  21. # SRCS_VAR is always the variable which contains the list of source files for your application or library.
  22. #
  23. # KDE3_AUTOMOC(file1 ... fileN)
  24. # Call this if you want to have automatic moc file handling.
  25. # This means if you include "foo.moc" in the source file foo.cpp
  26. # a moc file for the header foo.h will be created automatically.
  27. # You can set the property SKIP_AUTOMAKE using SET_SOURCE_FILES_PROPERTIES()
  28. # to exclude some files in the list from being processed.
  29. #
  30. # KDE3_ADD_MOC_FILES(SRCS_VAR file1 ... fileN )
  31. # If you don't use the KDE3_AUTOMOC() macro, for the files
  32. # listed here moc files will be created (named "foo.moc.cpp")
  33. #
  34. # KDE3_ADD_DCOP_SKELS(SRCS_VAR header1.h ... headerN.h )
  35. # Use this to generate DCOP skeletions from the listed headers.
  36. #
  37. # KDE3_ADD_DCOP_STUBS(SRCS_VAR header1.h ... headerN.h )
  38. # Use this to generate DCOP stubs from the listed headers.
  39. #
  40. # KDE3_ADD_UI_FILES(SRCS_VAR file1.ui ... fileN.ui )
  41. # Use this to add the Qt designer ui files to your application/library.
  42. #
  43. # KDE3_ADD_KCFG_FILES(SRCS_VAR file1.kcfgc ... fileN.kcfgc )
  44. # Use this to add KDE kconfig compiler files to your application/library.
  45. #
  46. # KDE3_INSTALL_LIBTOOL_FILE(target)
  47. # This will create and install a simple libtool file for the given target.
  48. #
  49. # KDE3_ADD_EXECUTABLE(name file1 ... fileN )
  50. # Equivalent to ADD_EXECUTABLE(), but additionally supports KDE3_ENABLE_FINAL
  51. #
  52. # KDE3_ADD_KPART(name [WITH_PREFIX] file1 ... fileN )
  53. # Create a KDE plugin (KPart, kioslave, etc.) from the given source files.
  54. # It supports KDE3_ENABLE_FINAL
  55. # If WITH_PREFIX is given, the resulting plugin will have the prefix "lib", otherwise it won't.
  56. # It creates and installs an appropriate libtool la-file.
  57. #
  58. # KDE3_ADD_KDEINIT_EXECUTABLE(name file1 ... fileN )
  59. # Create a KDE application in the form of a module loadable via kdeinit.
  60. # A library named kdeinit_<name> will be created and a small executable which links to it.
  61. # It supports KDE3_ENABLE_FINAL
  62. #
  63. # Author: Alexander Neundorf <[email protected]>
  64. IF(NOT UNIX)
  65. MESSAGE(FATAL_ERROR "Compiling KDE3 applications and libraries under Windows is not supported")
  66. ENDIF(NOT UNIX)
  67. SET(QT_MT_REQUIRED TRUE)
  68. #SET(QT_MIN_VERSION "3.0.0")
  69. #this line includes FindQt.cmake, which searches the Qt library and headers
  70. FIND_PACKAGE(Qt3 REQUIRED)
  71. FIND_PACKAGE(X11 REQUIRED)
  72. SET(QT_AND_KDECORE_LIBS ${QT_LIBRARIES} kdecore)
  73. #add some KDE specific stuff
  74. SET(KDE3_DEFINITIONS -DQT_CLEAN_NAMESPACE -D_GNU_SOURCE)
  75. #only on linux, but NOT e.g. on FreeBSD:
  76. IF(CMAKE_SYSTEM_NAME MATCHES "Linux")
  77. SET (KDE3_DEFINITIONS ${KDE3_DEFINITIONS} -D_XOPEN_SOURCE=500 -D_BSD_SOURCE)
  78. SET ( CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Wno-long-long -ansi -Wundef -Wcast-align -Wconversion -Wchar-subscripts -Wall -W -Wpointer-arith -Wwrite-strings -O2 -Wformat-security -Wmissing-format-attribute -fno-common")
  79. SET ( CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wnon-virtual-dtor -Wno-long-long -ansi -Wundef -Wcast-align -Wconversion -Wchar-subscripts -Wall -W -Wpointer-arith -Wwrite-strings -O2 -Wformat-security -fno-exceptions -fno-check-new -fno-common")
  80. ENDIF(CMAKE_SYSTEM_NAME MATCHES "Linux")
  81. # works on FreeBSD, NOT tested on NetBSD and OpenBSD
  82. IF (CMAKE_SYSTEM_NAME MATCHES BSD)
  83. SET ( CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -Wno-long-long -ansi -Wundef -Wcast-align -Wconversion -Wchar-subscripts -Wall -W -Wpointer-arith -Wwrite-strings -O2 -Wformat-security -Wmissing-format-attribute -fno-common")
  84. SET ( CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wnon-virtual-dtor -Wno-long-long -Wundef -Wcast-align -Wconversion -Wchar-subscripts -Wall -W -Wpointer-arith -Wwrite-strings -O2 -Wformat-security -Wmissing-format-attribute -fno-exceptions -fno-check-new -fno-common")
  85. ENDIF (CMAKE_SYSTEM_NAME MATCHES BSD)
  86. #SET(CMAKE_SHARED_LINKER_FLAGS "-avoid-version -module -Wl,--no-undefined -Wl,--allow-shlib-undefined")
  87. #SET(CMAKE_SHARED_LINKER_FLAGS "-Wl,--fatal-warnings -avoid-version -Wl,--no-undefined -lc")
  88. #SET(CMAKE_MODULE_LINKER_FLAGS "-Wl,--fatal-warnings -avoid-version -Wl,--no-undefined -lc")
  89. # all calls to FIND_PROGRAM/PATH/LIBRARY() follow the same scheme:
  90. # at first try some special paths with the argument "NO_DEFAULT_PATH"
  91. # so only these paths are checked
  92. # this is followed by a second call to FIND_PROGRAM/PATH/LIBRARY()
  93. # but this time without any paths and without NO_DEFAULT_PATH
  94. # this second call will do nothing if the first call already found
  95. # what it was looking for, if not, it will search only in the default
  96. # directories (/usr, /usr/local, etc.)
  97. #now try to find some kde stuff
  98. FIND_PROGRAM(KDECONFIG_EXECUTABLE NAMES kde-config PATHS
  99. $ENV{KDEDIR}/bin
  100. /opt/kde3/bin
  101. /opt/kde/bin
  102. NO_DEFAULT_PATH
  103. )
  104. FIND_PROGRAM(KDECONFIG_EXECUTABLE kde-config)
  105. SET(KDE3PREFIX)
  106. IF(KDECONFIG_EXECUTABLE)
  107. EXECUTE_PROCESS(COMMAND ${KDECONFIG_EXECUTABLE} --version
  108. OUTPUT_VARIABLE kde_config_version )
  109. STRING(REGEX MATCH "KDE: .\\." kde_version ${kde_config_version})
  110. IF (${kde_version} MATCHES "KDE: 3\\.")
  111. EXECUTE_PROCESS(COMMAND ${KDECONFIG_EXECUTABLE} --prefix
  112. OUTPUT_VARIABLE kdedir )
  113. STRING(REGEX REPLACE "\n" "" KDE3PREFIX "${kdedir}")
  114. ENDIF (${kde_version} MATCHES "KDE: 3\\.")
  115. ENDIF(KDECONFIG_EXECUTABLE)
  116. # at first the KDE include direcory
  117. # kpassdlg.h comes from kdeui and doesn't exist in KDE4 anymore
  118. FIND_PATH(KDE3_INCLUDE_DIR kpassdlg.h
  119. $ENV{KDEDIR}/include
  120. ${KDE3PREFIX}/include
  121. /opt/kde3/include
  122. /opt/kde/include
  123. /usr/include/kde
  124. /usr/local/include/kde
  125. NO_DEFAULT_PATH
  126. )
  127. FIND_PATH(KDE3_INCLUDE_DIR kpassdlg.h)
  128. #now the KDE library directory
  129. FIND_LIBRARY(KDE3_KDECORE_LIBRARY NAMES kdecore
  130. PATHS
  131. $ENV{KDEDIR}/lib
  132. ${KDE3PREFIX}/lib
  133. /opt/kde3/lib
  134. /opt/kde/lib
  135. NO_DEFAULT_PATH
  136. )
  137. FIND_LIBRARY(KDE3_KDECORE_LIBRARY NAMES kdecore)
  138. GET_FILENAME_COMPONENT(KDE3_LIB_DIR ${KDE3_KDECORE_LIBRARY} PATH )
  139. #now search for the dcop utilities
  140. FIND_PROGRAM(KDE3_DCOPIDL_EXECUTABLE NAMES dcopidl PATHS
  141. $ENV{KDEDIR}/bin
  142. ${KDE3PREFIX}/bin
  143. /opt/kde3/bin
  144. /opt/kde/bin
  145. NO_DEFAULT_PATH
  146. )
  147. FIND_PROGRAM(KDE3_DCOPIDL_EXECUTABLE NAMES dcopidl)
  148. FIND_PROGRAM(KDE3_DCOPIDL2CPP_EXECUTABLE NAMES dcopidl2cpp PATHS
  149. $ENV{KDEDIR}/bin
  150. ${KDE3PREFIX}/bin
  151. /opt/kde3/bin
  152. /opt/kde/bin
  153. NO_DEFAULT_PATH
  154. )
  155. FIND_PROGRAM(KDE3_DCOPIDL2CPP_EXECUTABLE NAMES dcopidl2cpp)
  156. FIND_PROGRAM(KDE3_KCFGC_EXECUTABLE NAMES kconfig_compiler PATHS
  157. $ENV{KDEDIR}/bin
  158. ${KDE3PREFIX}/bin
  159. /opt/kde3/bin
  160. /opt/kde/bin
  161. NO_DEFAULT_PATH
  162. )
  163. FIND_PROGRAM(KDE3_KCFGC_EXECUTABLE NAMES kconfig_compiler)
  164. # KDE3Macros.cmake contains all the KDE specific macros
  165. INCLUDE(KDE3Macros)
  166. #SET KDE3_FOUND
  167. IF (KDE3_INCLUDE_DIR AND KDE3_LIB_DIR AND KDE3_DCOPIDL_EXECUTABLE AND KDE3_DCOPIDL2CPP_EXECUTABLE AND KDE3_KCFGC_EXECUTABLE)
  168. SET(KDE3_FOUND TRUE)
  169. ELSE (KDE3_INCLUDE_DIR AND KDE3_LIB_DIR AND KDE3_DCOPIDL_EXECUTABLE AND KDE3_DCOPIDL2CPP_EXECUTABLE AND KDE3_KCFGC_EXECUTABLE)
  170. SET(KDE3_FOUND FALSE)
  171. ENDIF (KDE3_INCLUDE_DIR AND KDE3_LIB_DIR AND KDE3_DCOPIDL_EXECUTABLE AND KDE3_DCOPIDL2CPP_EXECUTABLE AND KDE3_KCFGC_EXECUTABLE)
  172. MACRO (KDE3_PRINT_RESULTS)
  173. IF(KDE3_INCLUDE_DIR)
  174. MESSAGE(STATUS "Found KDE3 include dir: ${KDE3_INCLUDE_DIR}")
  175. ELSE(KDE3_INCLUDE_DIR)
  176. MESSAGE(STATUS "Didn't find KDE3 headers")
  177. ENDIF(KDE3_INCLUDE_DIR)
  178. IF(KDE3_LIB_DIR)
  179. MESSAGE(STATUS "Found KDE3 library dir: ${KDE3_LIB_DIR}")
  180. ELSE(KDE3_LIB_DIR)
  181. MESSAGE(STATUS "Didn't find KDE3 core library")
  182. ENDIF(KDE3_LIB_DIR)
  183. IF(KDE3_DCOPIDL_EXECUTABLE)
  184. MESSAGE(STATUS "Found KDE3 dcopidl preprocessor: ${KDE3_DCOPIDL_EXECUTABLE}")
  185. ELSE(KDE3_DCOPIDL_EXECUTABLE)
  186. MESSAGE(STATUS "Didn't find the KDE3 dcopidl preprocessor")
  187. ENDIF(KDE3_DCOPIDL_EXECUTABLE)
  188. IF(KDE3_DCOPIDL2CPP_EXECUTABLE)
  189. MESSAGE(STATUS "Found KDE3 dcopidl2cpp preprocessor: ${KDE3_DCOPIDL2CPP_EXECUTABLE}")
  190. ELSE(KDE3_DCOPIDL2CPP_EXECUTABLE)
  191. MESSAGE(STATUS "Didn't find the KDE3 dcopidl2cpp preprocessor")
  192. ENDIF(KDE3_DCOPIDL2CPP_EXECUTABLE)
  193. IF(KDE3_KCFGC_EXECUTABLE)
  194. MESSAGE(STATUS "Found KDE3 kconfig_compiler preprocessor: ${KDE3_KCFGC_EXECUTABLE}")
  195. ELSE(KDE3_KCFGC_EXECUTABLE)
  196. MESSAGE(STATUS "Didn't find the KDE3 kconfig_compiler preprocessor")
  197. ENDIF(KDE3_KCFGC_EXECUTABLE)
  198. ENDMACRO (KDE3_PRINT_RESULTS)
  199. IF (KDE3_FIND_REQUIRED AND NOT KDE3_FOUND)
  200. #bail out if something wasn't found
  201. KDE3_PRINT_RESULTS()
  202. MESSAGE(FATAL_ERROR "Could NOT find everything required for compiling KDE 3 programs")
  203. ENDIF (KDE3_FIND_REQUIRED AND NOT KDE3_FOUND)
  204. IF (NOT KDE3_FIND_QUIETLY)
  205. KDE3_PRINT_RESULTS()
  206. ENDIF (NOT KDE3_FIND_QUIETLY)
  207. #add the found Qt and KDE include directories to the current include path
  208. SET(KDE3_INCLUDE_DIRS ${QT_INCLUDE_DIR} ${KDE3_INCLUDE_DIR})