STYLE: Fix typo in GetFilenameLastExtension docs
[cmake.git] / Modules / FindosgFX.cmake
blob9b45c3106c99b8c4729d6a6b02034b8c01ab10c3
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 osgFX
13 # This module defines
14 # OSGFX_LIBRARY
15 # OSGFX_FOUND, if false, do not try to link to osgFX
16 # OSGFX_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 <osgFX/BumpMapping>
28 # Try the user's environment request before anything else.
29 FIND_PATH(OSGFX_INCLUDE_DIR osgFX/BumpMapping
30   HINTS
31   $ENV{OSGFX_DIR}
32   $ENV{OSG_DIR}
33   $ENV{OSGDIR}
34   PATH_SUFFIXES include
35   PATHS
36     ~/Library/Frameworks
37     /Library/Frameworks
38     /usr/local
39     /usr
40     /sw # Fink
41     /opt/local # DarwinPorts
42     /opt/csw # Blastwave
43     /opt
44     [HKEY_LOCAL_MACHINE\\SYSTEM\\CurrentControlSet\\Control\\Session\ Manager\\Environment;OpenThreads_ROOT]
45     [HKEY_LOCAL_MACHINE\\SYSTEM\\CurrentControlSet\\Control\\Session\ Manager\\Environment;OSG_ROOT]
48 FIND_LIBRARY(OSGFX_LIBRARY 
49   NAMES osgFX
50   HINTS
51   $ENV{OSGFX_DIR}
52   $ENV{OSG_DIR}
53   $ENV{OSGDIR}
54   PATH_SUFFIXES lib64 lib
55   PATHS
56     ~/Library/Frameworks
57     /Library/Frameworks
58   /usr/local
59   /usr
60   /sw
61   /opt/local
62   /opt/csw
63   /opt
66 SET(OSGFX_FOUND "NO")
67 IF(OSGFX_LIBRARY AND OSGFX_INCLUDE_DIR)
68   SET(OSGFX_FOUND "YES")
69 ENDIF(OSGFX_LIBRARY AND OSGFX_INCLUDE_DIR)