Merge branch 'release-4.0'
[kiteware-cmake.git] / Modules / FindosgPresentation.cmake
blob9158db86c133e795f67d28cc56590b8221fd98ff
1 # Distributed under the OSI-approved BSD 3-Clause License.  See accompanying
2 # file Copyright.txt or https://cmake.org/licensing for details.
4 #[=======================================================================[.rst:
5 FindosgPresentation
6 -------------------
10 This is part of the ``Findosg*`` suite used to find OpenSceneGraph
11 components.  Each component is separate and you must opt in to each
12 module.  You must also opt into OpenGL and OpenThreads (and Producer
13 if needed) as these modules won't do it for you.  This is to allow you
14 control over your own system piece by piece in case you need to opt
15 out of certain components or change the Find behavior for a particular
16 module (perhaps because the default :module:`FindOpenGL` module doesn't
17 work with your system as an example).  If you want to use a more
18 convenient module that includes everything, use the
19 :module:`FindOpenSceneGraph` instead of the ``Findosg*.cmake`` modules.
21 Locate osgPresentation This module defines:
23 ``OSGPRESENTATION_FOUND``
24   Was osgPresentation found?
25 ``OSGPRESENTATION_INCLUDE_DIR``
26   Where to find the headers
27 ``OSGPRESENTATION_LIBRARIES``
28   The libraries to link for osgPresentation (use this)
29 ``OSGPRESENTATION_LIBRARY``
30   The osgPresentation library
31 ``OSGPRESENTATION_LIBRARY_DEBUG``
32   The osgPresentation debug library
34 ``$OSGDIR`` is an environment variable that would correspond to::
36   ./configure --prefix=$OSGDIR
38 used in building osg.
39 Created by Eric Wing.  Modified to work with osgPresentation by Robert
40 Osfield, January 2012.
41 #]=======================================================================]
43 # Header files are presumed to be included like
44 # #include <osg/PositionAttitudeTransform>
45 # #include <osgPresentation/SlideEventHandler>
47 include(${CMAKE_CURRENT_LIST_DIR}/Findosg_functions.cmake)
48 OSG_FIND_PATH   (OSGPRESENTATION osgPresentation/SlideEventHandler)
49 OSG_FIND_LIBRARY(OSGPRESENTATION osgPresentation)
51 include(FindPackageHandleStandardArgs)
52 find_package_handle_standard_args(osgPresentation DEFAULT_MSG
53     OSGPRESENTATION_LIBRARY OSGPRESENTATION_INCLUDE_DIR)