FindOpenSceneGraph.cmake 7.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241
  1. #.rst:
  2. # FindOpenSceneGraph
  3. # ------------------
  4. #
  5. # Find OpenSceneGraph
  6. #
  7. # This module searches for the OpenSceneGraph core "osg" library as well
  8. # as OpenThreads, and whatever additional COMPONENTS (nodekits) that you
  9. # specify.
  10. #
  11. # ::
  12. #
  13. # See http://www.openscenegraph.org
  14. #
  15. #
  16. #
  17. # NOTE: To use this module effectively you must either require CMake >=
  18. # 2.6.3 with cmake_minimum_required(VERSION 2.6.3) or download and place
  19. # FindOpenThreads.cmake, Findosg_functions.cmake, Findosg.cmake, and
  20. # Find<etc>.cmake files into your CMAKE_MODULE_PATH.
  21. #
  22. # ==================================
  23. #
  24. # This module accepts the following variables (note mixed case)
  25. #
  26. # ::
  27. #
  28. # OpenSceneGraph_DEBUG - Enable debugging output
  29. #
  30. #
  31. #
  32. # ::
  33. #
  34. # OpenSceneGraph_MARK_AS_ADVANCED - Mark cache variables as advanced
  35. # automatically
  36. #
  37. #
  38. #
  39. # The following environment variables are also respected for finding the
  40. # OSG and it's various components. CMAKE_PREFIX_PATH can also be used
  41. # for this (see find_library() CMake documentation).
  42. #
  43. # ``<MODULE>_DIR``
  44. # (where MODULE is of the form "OSGVOLUME" and there is a FindosgVolume.cmake file)
  45. # ``OSG_DIR``
  46. # ..
  47. # ``OSGDIR``
  48. # ..
  49. # ``OSG_ROOT``
  50. # ..
  51. #
  52. #
  53. # [CMake 2.8.10]: The CMake variable OSG_DIR can now be used as well to
  54. # influence detection, instead of needing to specify an environment
  55. # variable.
  56. #
  57. # This module defines the following output variables:
  58. #
  59. # ::
  60. #
  61. # OPENSCENEGRAPH_FOUND - Was the OSG and all of the specified components found?
  62. #
  63. #
  64. #
  65. # ::
  66. #
  67. # OPENSCENEGRAPH_VERSION - The version of the OSG which was found
  68. #
  69. #
  70. #
  71. # ::
  72. #
  73. # OPENSCENEGRAPH_INCLUDE_DIRS - Where to find the headers
  74. #
  75. #
  76. #
  77. # ::
  78. #
  79. # OPENSCENEGRAPH_LIBRARIES - The OSG libraries
  80. #
  81. #
  82. #
  83. # ================================== Example Usage:
  84. #
  85. # ::
  86. #
  87. # find_package(OpenSceneGraph 2.0.0 REQUIRED osgDB osgUtil)
  88. # # libOpenThreads & libosg automatically searched
  89. # include_directories(${OPENSCENEGRAPH_INCLUDE_DIRS})
  90. #
  91. #
  92. #
  93. # ::
  94. #
  95. # add_executable(foo foo.cc)
  96. # target_link_libraries(foo ${OPENSCENEGRAPH_LIBRARIES})
  97. #=============================================================================
  98. # Copyright 2009 Kitware, Inc.
  99. # Copyright 2009-2012 Philip Lowman <philip@yhbt.com>
  100. #
  101. # Distributed under the OSI-approved BSD License (the "License");
  102. # see accompanying file Copyright.txt for details.
  103. #
  104. # This software is distributed WITHOUT ANY WARRANTY; without even the
  105. # implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  106. # See the License for more information.
  107. #=============================================================================
  108. # (To distribute this file outside of CMake, substitute the full
  109. # License text for the above reference.)
  110. #
  111. # Naming convention:
  112. # Local variables of the form _osg_foo
  113. # Input variables of the form OpenSceneGraph_FOO
  114. # Output variables of the form OPENSCENEGRAPH_FOO
  115. #
  116. include(${CMAKE_CURRENT_LIST_DIR}/Findosg_functions.cmake)
  117. set(_osg_modules_to_process)
  118. foreach(_osg_component ${OpenSceneGraph_FIND_COMPONENTS})
  119. list(APPEND _osg_modules_to_process ${_osg_component})
  120. endforeach()
  121. list(APPEND _osg_modules_to_process "osg" "OpenThreads")
  122. list(REMOVE_DUPLICATES _osg_modules_to_process)
  123. if(OpenSceneGraph_DEBUG)
  124. message(STATUS "[ FindOpenSceneGraph.cmake:${CMAKE_CURRENT_LIST_LINE} ] "
  125. "Components = ${_osg_modules_to_process}")
  126. endif()
  127. #
  128. # First we need to find and parse osg/Version
  129. #
  130. OSG_FIND_PATH(OSG osg/Version)
  131. if(OpenSceneGraph_MARK_AS_ADVANCED)
  132. OSG_MARK_AS_ADVANCED(OSG)
  133. endif()
  134. # Try to ascertain the version...
  135. if(OSG_INCLUDE_DIR)
  136. if(OpenSceneGraph_DEBUG)
  137. message(STATUS "[ FindOpenSceneGraph.cmake:${CMAKE_CURRENT_LIST_LINE} ] "
  138. "Detected OSG_INCLUDE_DIR = ${OSG_INCLUDE_DIR}")
  139. endif()
  140. set(_osg_Version_file "${OSG_INCLUDE_DIR}/osg/Version")
  141. if("${OSG_INCLUDE_DIR}" MATCHES "\\.framework$" AND NOT EXISTS "${_osg_Version_file}")
  142. set(_osg_Version_file "${OSG_INCLUDE_DIR}/Headers/Version")
  143. endif()
  144. if(EXISTS "${_osg_Version_file}")
  145. file(STRINGS "${_osg_Version_file}" _osg_Version_contents
  146. REGEX "#define (OSG_VERSION_[A-Z]+|OPENSCENEGRAPH_[A-Z]+_VERSION)[ \t]+[0-9]+")
  147. else()
  148. set(_osg_Version_contents "unknown")
  149. endif()
  150. string(REGEX MATCH ".*#define OSG_VERSION_MAJOR[ \t]+[0-9]+.*"
  151. _osg_old_defines "${_osg_Version_contents}")
  152. string(REGEX MATCH ".*#define OPENSCENEGRAPH_MAJOR_VERSION[ \t]+[0-9]+.*"
  153. _osg_new_defines "${_osg_Version_contents}")
  154. if(_osg_old_defines)
  155. string(REGEX REPLACE ".*#define OSG_VERSION_MAJOR[ \t]+([0-9]+).*"
  156. "\\1" _osg_VERSION_MAJOR ${_osg_Version_contents})
  157. string(REGEX REPLACE ".*#define OSG_VERSION_MINOR[ \t]+([0-9]+).*"
  158. "\\1" _osg_VERSION_MINOR ${_osg_Version_contents})
  159. string(REGEX REPLACE ".*#define OSG_VERSION_PATCH[ \t]+([0-9]+).*"
  160. "\\1" _osg_VERSION_PATCH ${_osg_Version_contents})
  161. elseif(_osg_new_defines)
  162. string(REGEX REPLACE ".*#define OPENSCENEGRAPH_MAJOR_VERSION[ \t]+([0-9]+).*"
  163. "\\1" _osg_VERSION_MAJOR ${_osg_Version_contents})
  164. string(REGEX REPLACE ".*#define OPENSCENEGRAPH_MINOR_VERSION[ \t]+([0-9]+).*"
  165. "\\1" _osg_VERSION_MINOR ${_osg_Version_contents})
  166. string(REGEX REPLACE ".*#define OPENSCENEGRAPH_PATCH_VERSION[ \t]+([0-9]+).*"
  167. "\\1" _osg_VERSION_PATCH ${_osg_Version_contents})
  168. else()
  169. message(WARNING "[ FindOpenSceneGraph.cmake:${CMAKE_CURRENT_LIST_LINE} ] "
  170. "Failed to parse version number, please report this as a bug")
  171. endif()
  172. unset(_osg_Version_contents)
  173. set(OPENSCENEGRAPH_VERSION "${_osg_VERSION_MAJOR}.${_osg_VERSION_MINOR}.${_osg_VERSION_PATCH}"
  174. CACHE INTERNAL "The version of OSG which was detected")
  175. if(OpenSceneGraph_DEBUG)
  176. message(STATUS "[ FindOpenSceneGraph.cmake:${CMAKE_CURRENT_LIST_LINE} ] "
  177. "Detected version ${OPENSCENEGRAPH_VERSION}")
  178. endif()
  179. endif()
  180. set(_osg_quiet)
  181. if(OpenSceneGraph_FIND_QUIETLY)
  182. set(_osg_quiet "QUIET")
  183. endif()
  184. #
  185. # Here we call find_package() on all of the components
  186. #
  187. foreach(_osg_module ${_osg_modules_to_process})
  188. if(OpenSceneGraph_DEBUG)
  189. message(STATUS "[ FindOpenSceneGraph.cmake:${CMAKE_CURRENT_LIST_LINE} ] "
  190. "Calling find_package(${_osg_module} ${_osg_required} ${_osg_quiet})")
  191. endif()
  192. find_package(${_osg_module} ${_osg_quiet})
  193. string(TOUPPER ${_osg_module} _osg_module_UC)
  194. # append to list if module was found OR is required
  195. if( ${_osg_module_UC}_FOUND OR OpenSceneGraph_FIND_REQUIRED )
  196. list(APPEND OPENSCENEGRAPH_INCLUDE_DIR ${${_osg_module_UC}_INCLUDE_DIR})
  197. list(APPEND OPENSCENEGRAPH_LIBRARIES ${${_osg_module_UC}_LIBRARIES})
  198. endif()
  199. if(OpenSceneGraph_MARK_AS_ADVANCED)
  200. OSG_MARK_AS_ADVANCED(${_osg_module})
  201. endif()
  202. endforeach()
  203. if(OPENSCENEGRAPH_INCLUDE_DIR)
  204. list(REMOVE_DUPLICATES OPENSCENEGRAPH_INCLUDE_DIR)
  205. endif()
  206. #
  207. # Check each module to see if it's found
  208. #
  209. set(_osg_component_founds)
  210. if(OpenSceneGraph_FIND_REQUIRED)
  211. foreach(_osg_module ${_osg_modules_to_process})
  212. string(TOUPPER ${_osg_module} _osg_module_UC)
  213. list(APPEND _osg_component_founds ${_osg_module_UC}_FOUND)
  214. endforeach()
  215. endif()
  216. include(${CMAKE_CURRENT_LIST_DIR}/FindPackageHandleStandardArgs.cmake)
  217. FIND_PACKAGE_HANDLE_STANDARD_ARGS(OpenSceneGraph
  218. REQUIRED_VARS OPENSCENEGRAPH_LIBRARIES OPENSCENEGRAPH_INCLUDE_DIR ${_osg_component_founds}
  219. VERSION_VAR OPENSCENEGRAPH_VERSION)
  220. unset(_osg_component_founds)
  221. set(OPENSCENEGRAPH_INCLUDE_DIRS ${OPENSCENEGRAPH_INCLUDE_DIR})