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
9 # If you want to use a more convenient module that includes everything,
10 # use the FindOpenSceneGraph.cmake instead of the Findosg*.cmake modules.
15 # OSGSIM_FOUND, if false, do not try to link to osgSim
16 # OSGSIM_INCLUDE_DIR, where to find the headers
18 # $OSGDIR is an environment variable that would
19 # correspond to the ./configure --prefix=$OSGDIR
20 # used in building osg.
22 # Created by Eric Wing.
24 # Header files are presumed to be included like
25 # #include <osg/PositionAttitudeTransform>
26 # #include <osgSim/ImpostorSprite>
28 # Try the user's environment request before anything else.
29 FIND_PATH(OSGSIM_INCLUDE_DIR osgSim/ImpostorSprite
38 FIND_PATH(OSGSIM_INCLUDE_DIR osgSim/ImpostorSprite
45 /opt/local # DarwinPorts
48 [HKEY_LOCAL_MACHINE\\SYSTEM\\CurrentControlSet\\Control\\Session\ Manager\\Environment;OpenThreads_ROOT]
49 [HKEY_LOCAL_MACHINE\\SYSTEM\\CurrentControlSet\\Control\\Session\ Manager\\Environment;OSG_ROOT]
53 FIND_LIBRARY(OSGSIM_LIBRARY
60 PATH_SUFFIXES lib64 lib
63 FIND_LIBRARY(OSGSIM_LIBRARY
74 PATH_SUFFIXES lib64 lib
77 SET(OSGSIM_FOUND "NO")
78 IF(OSGSIM_LIBRARY AND OSGSIM_INCLUDE_DIR)
79 SET(OSGSIM_FOUND "YES")
80 ENDIF(OSGSIM_LIBRARY AND OSGSIM_INCLUDE_DIR)