Findosg_functions.cmake 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  1. #.rst:
  2. # Findosg_functions
  3. # -----------------
  4. #
  5. #
  6. #
  7. #
  8. #
  9. # This CMake file contains two macros to assist with searching for OSG
  10. # libraries and nodekits. Please see FindOpenSceneGraph.cmake for full
  11. # documentation.
  12. #=============================================================================
  13. # Copyright 2009 Kitware, Inc.
  14. # Copyright 2009-2012 Philip Lowman <philip@yhbt.com>
  15. #
  16. # Distributed under the OSI-approved BSD License (the "License");
  17. # see accompanying file Copyright.txt for details.
  18. #
  19. # This software is distributed WITHOUT ANY WARRANTY; without even the
  20. # implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  21. # See the License for more information.
  22. #=============================================================================
  23. # (To distribute this file outside of CMake, substitute the full
  24. # License text for the above reference.)
  25. #
  26. # OSG_FIND_PATH
  27. #
  28. function(OSG_FIND_PATH module header)
  29. string(TOUPPER ${module} module_uc)
  30. # Try the user's environment request before anything else.
  31. find_path(${module_uc}_INCLUDE_DIR ${header}
  32. HINTS
  33. ENV ${module_uc}_DIR
  34. ENV OSG_DIR
  35. ENV OSGDIR
  36. ENV OSG_ROOT
  37. ${${module_uc}_DIR}
  38. ${OSG_DIR}
  39. PATH_SUFFIXES include
  40. PATHS
  41. /sw # Fink
  42. /opt/local # DarwinPorts
  43. /opt/csw # Blastwave
  44. /opt
  45. /usr/freeware
  46. )
  47. endfunction()
  48. #
  49. # OSG_FIND_LIBRARY
  50. #
  51. function(OSG_FIND_LIBRARY module library)
  52. string(TOUPPER ${module} module_uc)
  53. find_library(${module_uc}_LIBRARY
  54. NAMES ${library}
  55. HINTS
  56. ENV ${module_uc}_DIR
  57. ENV OSG_DIR
  58. ENV OSGDIR
  59. ENV OSG_ROOT
  60. ${${module_uc}_DIR}
  61. ${OSG_DIR}
  62. PATH_SUFFIXES lib
  63. PATHS
  64. /sw # Fink
  65. /opt/local # DarwinPorts
  66. /opt/csw # Blastwave
  67. /opt
  68. /usr/freeware
  69. )
  70. find_library(${module_uc}_LIBRARY_DEBUG
  71. NAMES ${library}d
  72. HINTS
  73. ENV ${module_uc}_DIR
  74. ENV OSG_DIR
  75. ENV OSGDIR
  76. ENV OSG_ROOT
  77. ${${module_uc}_DIR}
  78. ${OSG_DIR}
  79. PATH_SUFFIXES lib
  80. PATHS
  81. /sw # Fink
  82. /opt/local # DarwinPorts
  83. /opt/csw # Blastwave
  84. /opt
  85. /usr/freeware
  86. )
  87. if(NOT ${module_uc}_LIBRARY_DEBUG)
  88. # They don't have a debug library
  89. set(${module_uc}_LIBRARY_DEBUG ${${module_uc}_LIBRARY} PARENT_SCOPE)
  90. set(${module_uc}_LIBRARIES ${${module_uc}_LIBRARY} PARENT_SCOPE)
  91. else()
  92. # They really have a FOO_LIBRARY_DEBUG
  93. set(${module_uc}_LIBRARIES
  94. optimized ${${module_uc}_LIBRARY}
  95. debug ${${module_uc}_LIBRARY_DEBUG}
  96. PARENT_SCOPE
  97. )
  98. endif()
  99. endfunction()
  100. #
  101. # OSG_MARK_AS_ADVANCED
  102. # Just a convenience function for calling MARK_AS_ADVANCED
  103. #
  104. function(OSG_MARK_AS_ADVANCED _module)
  105. string(TOUPPER ${_module} _module_UC)
  106. mark_as_advanced(${_module_UC}_INCLUDE_DIR)
  107. mark_as_advanced(${_module_UC}_LIBRARY)
  108. mark_as_advanced(${_module_UC}_LIBRARY_DEBUG)
  109. endfunction()