FindPostgreSQL.cmake 7.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192
  1. #.rst:
  2. # FindPostgreSQL
  3. # --------------
  4. #
  5. # Find the PostgreSQL installation.
  6. #
  7. # This module defines
  8. #
  9. # ::
  10. #
  11. # PostgreSQL_LIBRARIES - the PostgreSQL libraries needed for linking
  12. # PostgreSQL_INCLUDE_DIRS - the directories of the PostgreSQL headers
  13. # PostgreSQL_LIBRARY_DIRS - the link directories for PostgreSQL libraries
  14. # PostgreSQL_VERSION_STRING - the version of PostgreSQL found (since CMake 2.8.8)
  15. #=============================================================================
  16. # Copyright 2004-2009 Kitware, Inc.
  17. #
  18. # Distributed under the OSI-approved BSD License (the "License");
  19. # see accompanying file Copyright.txt for details.
  20. #
  21. # This software is distributed WITHOUT ANY WARRANTY; without even the
  22. # implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  23. # See the License for more information.
  24. #=============================================================================
  25. # (To distribute this file outside of CMake, substitute the full
  26. # License text for the above reference.)
  27. # ----------------------------------------------------------------------------
  28. # History:
  29. # This module is derived from the module originally found in the VTK source tree.
  30. #
  31. # ----------------------------------------------------------------------------
  32. # Note:
  33. # PostgreSQL_ADDITIONAL_VERSIONS is a variable that can be used to set the
  34. # version mumber of the implementation of PostgreSQL.
  35. # In Windows the default installation of PostgreSQL uses that as part of the path.
  36. # E.g C:\Program Files\PostgreSQL\8.4.
  37. # Currently, the following version numbers are known to this module:
  38. # "9.4" "9.3" "9.2" "9.1" "9.0" "8.4" "8.3" "8.2" "8.1" "8.0"
  39. #
  40. # To use this variable just do something like this:
  41. # set(PostgreSQL_ADDITIONAL_VERSIONS "9.2" "8.4.4")
  42. # before calling find_package(PostgreSQL) in your CMakeLists.txt file.
  43. # This will mean that the versions you set here will be found first in the order
  44. # specified before the default ones are searched.
  45. #
  46. # ----------------------------------------------------------------------------
  47. # You may need to manually set:
  48. # PostgreSQL_INCLUDE_DIR - the path to where the PostgreSQL include files are.
  49. # PostgreSQL_LIBRARY_DIR - The path to where the PostgreSQL library files are.
  50. # If FindPostgreSQL.cmake cannot find the include files or the library files.
  51. #
  52. # ----------------------------------------------------------------------------
  53. # The following variables are set if PostgreSQL is found:
  54. # PostgreSQL_FOUND - Set to true when PostgreSQL is found.
  55. # PostgreSQL_INCLUDE_DIRS - Include directories for PostgreSQL
  56. # PostgreSQL_LIBRARY_DIRS - Link directories for PostgreSQL libraries
  57. # PostgreSQL_LIBRARIES - The PostgreSQL libraries.
  58. #
  59. # ----------------------------------------------------------------------------
  60. # If you have installed PostgreSQL in a non-standard location.
  61. # (Please note that in the following comments, it is assumed that <Your Path>
  62. # points to the root directory of the include directory of PostgreSQL.)
  63. # Then you have three options.
  64. # 1) After CMake runs, set PostgreSQL_INCLUDE_DIR to <Your Path>/include and
  65. # PostgreSQL_LIBRARY_DIR to wherever the library pq (or libpq in windows) is
  66. # 2) Use CMAKE_INCLUDE_PATH to set a path to <Your Path>/PostgreSQL<-version>. This will allow find_path()
  67. # to locate PostgreSQL_INCLUDE_DIR by utilizing the PATH_SUFFIXES option. e.g. In your CMakeLists.txt file
  68. # set(CMAKE_INCLUDE_PATH ${CMAKE_INCLUDE_PATH} "<Your Path>/include")
  69. # 3) Set an environment variable called ${PostgreSQL_ROOT} that points to the root of where you have
  70. # installed PostgreSQL, e.g. <Your Path>.
  71. #
  72. # ----------------------------------------------------------------------------
  73. set(PostgreSQL_INCLUDE_PATH_DESCRIPTION "top-level directory containing the PostgreSQL include directories. E.g /usr/local/include/PostgreSQL/8.4 or C:/Program Files/PostgreSQL/8.4/include")
  74. set(PostgreSQL_INCLUDE_DIR_MESSAGE "Set the PostgreSQL_INCLUDE_DIR cmake cache entry to the ${PostgreSQL_INCLUDE_PATH_DESCRIPTION}")
  75. set(PostgreSQL_LIBRARY_PATH_DESCRIPTION "top-level directory containing the PostgreSQL libraries.")
  76. set(PostgreSQL_LIBRARY_DIR_MESSAGE "Set the PostgreSQL_LIBRARY_DIR cmake cache entry to the ${PostgreSQL_LIBRARY_PATH_DESCRIPTION}")
  77. set(PostgreSQL_ROOT_DIR_MESSAGE "Set the PostgreSQL_ROOT system variable to where PostgreSQL is found on the machine E.g C:/Program Files/PostgreSQL/8.4")
  78. set(PostgreSQL_KNOWN_VERSIONS ${PostgreSQL_ADDITIONAL_VERSIONS}
  79. "9.5" "9.4" "9.3" "9.2" "9.1" "9.0" "8.4" "8.3" "8.2" "8.1" "8.0")
  80. # Define additional search paths for root directories.
  81. set( PostgreSQL_ROOT_DIRECTORIES
  82. ENV PostgreSQL_ROOT
  83. ${PostgreSQL_ROOT}
  84. )
  85. foreach(suffix ${PostgreSQL_KNOWN_VERSIONS})
  86. if(WIN32)
  87. list(APPEND PostgreSQL_LIBRARY_ADDITIONAL_SEARCH_SUFFIXES
  88. "PostgreSQL/${suffix}/lib")
  89. list(APPEND PostgreSQL_INCLUDE_ADDITIONAL_SEARCH_SUFFIXES
  90. "PostgreSQL/${suffix}/include")
  91. list(APPEND PostgreSQL_TYPE_ADDITIONAL_SEARCH_SUFFIXES
  92. "PostgreSQL/${suffix}/include/server")
  93. endif()
  94. if(UNIX)
  95. list(APPEND PostgreSQL_TYPE_ADDITIONAL_SEARCH_SUFFIXES
  96. "postgresql/${suffix}/server")
  97. endif()
  98. endforeach()
  99. #
  100. # Look for an installation.
  101. #
  102. find_path(PostgreSQL_INCLUDE_DIR
  103. NAMES libpq-fe.h
  104. PATHS
  105. # Look in other places.
  106. ${PostgreSQL_ROOT_DIRECTORIES}
  107. PATH_SUFFIXES
  108. pgsql
  109. postgresql
  110. include
  111. ${PostgreSQL_INCLUDE_ADDITIONAL_SEARCH_SUFFIXES}
  112. # Help the user find it if we cannot.
  113. DOC "The ${PostgreSQL_INCLUDE_DIR_MESSAGE}"
  114. )
  115. find_path(PostgreSQL_TYPE_INCLUDE_DIR
  116. NAMES catalog/pg_type.h
  117. PATHS
  118. # Look in other places.
  119. ${PostgreSQL_ROOT_DIRECTORIES}
  120. PATH_SUFFIXES
  121. postgresql
  122. pgsql/server
  123. postgresql/server
  124. include/server
  125. ${PostgreSQL_TYPE_ADDITIONAL_SEARCH_SUFFIXES}
  126. # Help the user find it if we cannot.
  127. DOC "The ${PostgreSQL_INCLUDE_DIR_MESSAGE}"
  128. )
  129. # The PostgreSQL library.
  130. set (PostgreSQL_LIBRARY_TO_FIND pq)
  131. # Setting some more prefixes for the library
  132. set (PostgreSQL_LIB_PREFIX "")
  133. if ( WIN32 )
  134. set (PostgreSQL_LIB_PREFIX ${PostgreSQL_LIB_PREFIX} "lib")
  135. set (PostgreSQL_LIBRARY_TO_FIND ${PostgreSQL_LIB_PREFIX}${PostgreSQL_LIBRARY_TO_FIND})
  136. endif()
  137. find_library(PostgreSQL_LIBRARY
  138. NAMES ${PostgreSQL_LIBRARY_TO_FIND}
  139. PATHS
  140. ${PostgreSQL_ROOT_DIRECTORIES}
  141. PATH_SUFFIXES
  142. lib
  143. ${PostgreSQL_LIBRARY_ADDITIONAL_SEARCH_SUFFIXES}
  144. # Help the user find it if we cannot.
  145. DOC "The ${PostgreSQL_LIBRARY_DIR_MESSAGE}"
  146. )
  147. get_filename_component(PostgreSQL_LIBRARY_DIR ${PostgreSQL_LIBRARY} PATH)
  148. if (PostgreSQL_INCLUDE_DIR)
  149. # Some platforms include multiple pg_config.hs for multi-lib configurations
  150. # This is a temporary workaround. A better solution would be to compile
  151. # a dummy c file and extract the value of the symbol.
  152. file(GLOB _PG_CONFIG_HEADERS "${PostgreSQL_INCLUDE_DIR}/pg_config*.h")
  153. foreach(_PG_CONFIG_HEADER ${_PG_CONFIG_HEADERS})
  154. if(EXISTS "${_PG_CONFIG_HEADER}")
  155. file(STRINGS "${_PG_CONFIG_HEADER}" pgsql_version_str
  156. REGEX "^#define[\t ]+PG_VERSION[\t ]+\".*\"")
  157. if(pgsql_version_str)
  158. string(REGEX REPLACE "^#define[\t ]+PG_VERSION[\t ]+\"([^\"]*)\".*"
  159. "\\1" PostgreSQL_VERSION_STRING "${pgsql_version_str}")
  160. break()
  161. endif()
  162. endif()
  163. endforeach()
  164. unset(pgsql_version_str)
  165. endif()
  166. # Did we find anything?
  167. include(${CMAKE_CURRENT_LIST_DIR}/FindPackageHandleStandardArgs.cmake)
  168. find_package_handle_standard_args(PostgreSQL
  169. REQUIRED_VARS PostgreSQL_LIBRARY PostgreSQL_INCLUDE_DIR PostgreSQL_TYPE_INCLUDE_DIR
  170. VERSION_VAR PostgreSQL_VERSION_STRING)
  171. set(PostgreSQL_FOUND ${POSTGRESQL_FOUND})
  172. # Now try to get the include and library path.
  173. if(PostgreSQL_FOUND)
  174. set(PostgreSQL_INCLUDE_DIRS ${PostgreSQL_INCLUDE_DIR} ${PostgreSQL_TYPE_INCLUDE_DIR} )
  175. set(PostgreSQL_LIBRARY_DIRS ${PostgreSQL_LIBRARY_DIR} )
  176. set(PostgreSQL_LIBRARIES ${PostgreSQL_LIBRARY_TO_FIND})
  177. endif()
  178. mark_as_advanced(PostgreSQL_INCLUDE_DIR PostgreSQL_TYPE_INCLUDE_DIR PostgreSQL_LIBRARY )