TZIVI-254: IVI needs a newer version of cmake
[profile/ivi/cmake.git] / Modules / FindosgUtil.cmake
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 osgUtil
13 # This module defines
14 #
15 # OSGUTIL_FOUND - Was osgUtil found?
16 # OSGUTIL_INCLUDE_DIR - Where to find the headers
17 # OSGUTIL_LIBRARIES - The libraries to link for osgUtil (use this)
18 #
19 # OSGUTIL_LIBRARY - The osgUtil library
20 # OSGUTIL_LIBRARY_DEBUG - The osgUtil 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
28 #=============================================================================
29 # Copyright 2007-2009 Kitware, Inc.
30 #
31 # Distributed under the OSI-approved BSD License (the "License");
32 # see accompanying file Copyright.txt for details.
33 #
34 # This software is distributed WITHOUT ANY WARRANTY; without even the
35 # implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
36 # See the License for more information.
37 #=============================================================================
38 # (To distribute this file outside of CMake, substitute the full
39 #  License text for the above reference.)
40
41 # Header files are presumed to be included like
42 # #include <osg/PositionAttitudeTransform>
43 # #include <osgUtil/SceneView>
44
45 include(Findosg_functions)
46 OSG_FIND_PATH   (OSGUTIL osgUtil/SceneView)
47 OSG_FIND_LIBRARY(OSGUTIL osgUtil)
48
49 include(${CMAKE_CURRENT_LIST_DIR}/FindPackageHandleStandardArgs.cmake)
50 FIND_PACKAGE_HANDLE_STANDARD_ARGS(osgUtil DEFAULT_MSG
51     OSGUTIL_LIBRARY OSGUTIL_INCLUDE_DIR)