FindKDE3.cmake 9.8 KB

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