Resync
[CMakeLuaTailorHgBridge.git] / CMakeLua / Modules / FindosgIntrospection.cmake
blobaf176876716c95b4dac045afa27a44aba42012c7
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 osgINTROSPECTION
13 # This module defines
15 # OSGINTROSPECTION_FOUND - Was osgIntrospection found?
16 # OSGINTROSPECTION_INCLUDE_DIR - Where to find the headers
17 # OSGINTROSPECTION_LIBRARIES - The libraries to link for osgIntrospection (use this)
19 # OSGINTROSPECTION_LIBRARY - The osgIntrospection library
20 # OSGINTROSPECTION_LIBRARY_DEBUG - The osgIntrospection debug library
22 # $OSGDIR is an environment variable that would
23 # correspond to the ./configure --prefix=$OSGDIR
24 # used in building osg.
26 # Created by Eric Wing.
28 # Header files are presumed to be included like
29 # #include <osg/PositionAttitudeTransform>
30 # #include <osgIntrospection/Reflection>
32 include(Findosg_functions)
33 OSG_FIND_PATH   (OSGINTROSPECTION osgIntrospection/Reflection)
34 OSG_FIND_LIBRARY(OSGINTROSPECTION osgIntrospection)
36 include(FindPackageHandleStandardArgs)
37 FIND_PACKAGE_HANDLE_STANDARD_ARGS(osgIntrospection DEFAULT_MSG
38     OSGINTROSPECTION_LIBRARY OSGINTROSPECTION_INCLUDE_DIR)