FindosgTerrain.cmake 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. # Distributed under the OSI-approved BSD 3-Clause License. See accompanying
  2. # file Copyright.txt or https://cmake.org/licensing for details.
  3. #[=======================================================================[.rst:
  4. FindosgTerrain
  5. --------------
  6. This is part of the Findosg* suite used to find OpenSceneGraph
  7. components. Each component is separate and you must opt in to each
  8. module. You must also opt into OpenGL and OpenThreads (and Producer
  9. if needed) as these modules won't do it for you. This is to allow you
  10. control over your own system piece by piece in case you need to opt
  11. out of certain components or change the Find behavior for a particular
  12. module (perhaps because the default FindOpenGL.cmake module doesn't
  13. work with your system as an example). If you want to use a more
  14. convenient module that includes everything, use the
  15. FindOpenSceneGraph.cmake instead of the Findosg*.cmake modules.
  16. Locate osgTerrain This module defines
  17. OSGTERRAIN_FOUND - Was osgTerrain found? OSGTERRAIN_INCLUDE_DIR -
  18. Where to find the headers OSGTERRAIN_LIBRARIES - The libraries to link
  19. for osgTerrain (use this)
  20. OSGTERRAIN_LIBRARY - The osgTerrain library OSGTERRAIN_LIBRARY_DEBUG -
  21. The osgTerrain debug library
  22. $OSGDIR is an environment variable that would correspond to the
  23. ./configure --prefix=$OSGDIR used in building osg.
  24. Created by Eric Wing.
  25. #]=======================================================================]
  26. # Header files are presumed to be included like
  27. # #include <osg/PositionAttitudeTransform>
  28. # #include <osgTerrain/Terrain>
  29. include(${CMAKE_CURRENT_LIST_DIR}/Findosg_functions.cmake)
  30. OSG_FIND_PATH (OSGTERRAIN osgTerrain/Terrain)
  31. OSG_FIND_LIBRARY(OSGTERRAIN osgTerrain)
  32. include(${CMAKE_CURRENT_LIST_DIR}/FindPackageHandleStandardArgs.cmake)
  33. FIND_PACKAGE_HANDLE_STANDARD_ARGS(osgTerrain DEFAULT_MSG
  34. OSGTERRAIN_LIBRARY OSGTERRAIN_INCLUDE_DIR)