Findosg.cmake 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. # This is part of the Findosg* suite used to find OpenSceneGraph components.
  2. # Each component is separate and you must opt in to each module. You must
  3. # also opt into OpenGL and OpenThreads (and Producer if needed) as these
  4. # modules won't do it for you. This is to allow you control over your own
  5. # system piece by piece in case you need to opt out of certain components
  6. # or change the Find behavior for a particular module (perhaps because the
  7. # default FindOpenGL.cmake module doesn't work with your system as an
  8. # example).
  9. # If you want to use a more convenient module that includes everything,
  10. # use the FindOpenSceneGraph.cmake instead of the Findosg*.cmake modules.
  11. #
  12. # Locate osg
  13. # This module defines
  14. #
  15. # OSG_FOUND - Was the Osg found?
  16. # OSG_INCLUDE_DIR - Where to find the headers
  17. # OSG_LIBRARIES - The libraries to link against for the OSG (use this)
  18. #
  19. # OSG_LIBRARY - The OSG library
  20. # OSG_LIBRARY_DEBUG - The OSG debug library
  21. #
  22. # $OSGDIR is an environment variable that would
  23. # correspond to the ./configure --prefix=$OSGDIR
  24. # used in building osg.
  25. #
  26. # Created by Eric Wing.
  27. # Header files are presumed to be included like
  28. # #include <osg/PositionAttitudeTransform>
  29. # #include <osgUtil/SceneView>
  30. include(Findosg_functions)
  31. OSG_FIND_PATH (OSG osg/PositionAttitudeTransform)
  32. OSG_FIND_LIBRARY(OSG osg)
  33. include(FindPackageHandleStandardArgs)
  34. FIND_PACKAGE_HANDLE_STANDARD_ARGS(OSG DEFAULT_MSG OSG_LIBRARY OSG_INCLUDE_DIR)