FindGDAL.cmake 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119
  1. #.rst:
  2. # FindGDAL
  3. # --------
  4. #
  5. #
  6. #
  7. # Locate gdal
  8. #
  9. # This module accepts the following environment variables:
  10. #
  11. # ::
  12. #
  13. # GDAL_DIR or GDAL_ROOT - Specify the location of GDAL
  14. #
  15. #
  16. #
  17. # This module defines the following CMake variables:
  18. #
  19. # ::
  20. #
  21. # GDAL_FOUND - True if libgdal is found
  22. # GDAL_LIBRARY - A variable pointing to the GDAL library
  23. # GDAL_INCLUDE_DIR - Where to find the headers
  24. #=============================================================================
  25. # Copyright 2007-2009 Kitware, Inc.
  26. #
  27. # Distributed under the OSI-approved BSD License (the "License");
  28. # see accompanying file Copyright.txt for details.
  29. #
  30. # This software is distributed WITHOUT ANY WARRANTY; without even the
  31. # implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  32. # See the License for more information.
  33. #=============================================================================
  34. # (To distribute this file outside of CMake, substitute the full
  35. # License text for the above reference.)
  36. #
  37. # $GDALDIR is an environment variable that would
  38. # correspond to the ./configure --prefix=$GDAL_DIR
  39. # used in building gdal.
  40. #
  41. # Created by Eric Wing. I'm not a gdal user, but OpenSceneGraph uses it
  42. # for osgTerrain so I whipped this module together for completeness.
  43. # I actually don't know the conventions or where files are typically
  44. # placed in distros.
  45. # Any real gdal users are encouraged to correct this (but please don't
  46. # break the OS X framework stuff when doing so which is what usually seems
  47. # to happen).
  48. # This makes the presumption that you are include gdal.h like
  49. #
  50. #include "gdal.h"
  51. find_path(GDAL_INCLUDE_DIR gdal.h
  52. HINTS
  53. ENV GDAL_DIR
  54. ENV GDAL_ROOT
  55. PATH_SUFFIXES
  56. include/gdal
  57. include/GDAL
  58. include
  59. PATHS
  60. ~/Library/Frameworks/gdal.framework/Headers
  61. /Library/Frameworks/gdal.framework/Headers
  62. /sw # Fink
  63. /opt/local # DarwinPorts
  64. /opt/csw # Blastwave
  65. /opt
  66. )
  67. if(UNIX)
  68. # Use gdal-config to obtain the library version (this should hopefully
  69. # allow us to -lgdal1.x.y where x.y are correct version)
  70. # For some reason, libgdal development packages do not contain
  71. # libgdal.so...
  72. find_program(GDAL_CONFIG gdal-config
  73. HINTS
  74. ENV GDAL_DIR
  75. ENV GDAL_ROOT
  76. PATH_SUFFIXES bin
  77. PATHS
  78. /sw # Fink
  79. /opt/local # DarwinPorts
  80. /opt/csw # Blastwave
  81. /opt
  82. )
  83. if(GDAL_CONFIG)
  84. exec_program(${GDAL_CONFIG} ARGS --libs OUTPUT_VARIABLE GDAL_CONFIG_LIBS)
  85. if(GDAL_CONFIG_LIBS)
  86. string(REGEX MATCHALL "-l[^ ]+" _gdal_dashl ${GDAL_CONFIG_LIBS})
  87. string(REPLACE "-l" "" _gdal_lib "${_gdal_dashl}")
  88. string(REGEX MATCHALL "-L[^ ]+" _gdal_dashL ${GDAL_CONFIG_LIBS})
  89. string(REPLACE "-L" "" _gdal_libpath "${_gdal_dashL}")
  90. endif()
  91. endif()
  92. endif()
  93. find_library(GDAL_LIBRARY
  94. NAMES ${_gdal_lib} gdal gdal_i gdal1.5.0 gdal1.4.0 gdal1.3.2 GDAL
  95. HINTS
  96. ENV GDAL_DIR
  97. ENV GDAL_ROOT
  98. ${_gdal_libpath}
  99. PATH_SUFFIXES lib
  100. PATHS
  101. /sw
  102. /opt/local
  103. /opt/csw
  104. /opt
  105. /usr/freeware
  106. )
  107. include(${CMAKE_CURRENT_LIST_DIR}/FindPackageHandleStandardArgs.cmake)
  108. FIND_PACKAGE_HANDLE_STANDARD_ARGS(GDAL DEFAULT_MSG GDAL_LIBRARY GDAL_INCLUDE_DIR)
  109. set(GDAL_LIBRARIES ${GDAL_LIBRARY})
  110. set(GDAL_INCLUDE_DIRS ${GDAL_INCLUDE_DIR})