Initial commit.
[CMakeLuaTailorHgBridge.git] / CMakeLua / Modules / FindosgText.cmake
blobd6c3e1f25ff15901ef36032e1dc6bb05e81b604d
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 osgText
13 # This module defines
14 # OSGTEXT_LIBRARY
15 # OSGTEXT_FOUND, if false, do not try to link to osgText
16 # OSGTEXT_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 <osgText/Text>
28 # Try the user's environment request before anything else.
29 FIND_PATH(OSGTEXT_INCLUDE_DIR osgText/Text
30   PATHS
31   $ENV{OSGTEXT_DIR}
32   $ENV{OSG_DIR}
33   $ENV{OSGDIR}
34   NO_DEFAULT_PATH
35   PATH_SUFFIXES include
38 FIND_PATH(OSGTEXT_INCLUDE_DIR osgText/Text
39   PATHS
40     ~/Library/Frameworks
41     /Library/Frameworks
42     /usr/local
43     /usr
44     /sw # Fink
45     /opt/local # DarwinPorts
46     /opt/csw # Blastwave
47     /opt
48     [HKEY_LOCAL_MACHINE\\SYSTEM\\CurrentControlSet\\Control\\Session\ Manager\\Environment;OpenThreads_ROOT]
49     [HKEY_LOCAL_MACHINE\\SYSTEM\\CurrentControlSet\\Control\\Session\ Manager\\Environment;OSG_ROOT]
50   PATH_SUFFIXES include
53 FIND_LIBRARY(OSGTEXT_LIBRARY 
54   NAMES osgText
55   PATHS
56   $ENV{OSGTEXT_DIR}
57   $ENV{OSG_DIR}
58   $ENV{OSGDIR}
59   NO_DEFAULT_PATH
60     PATH_SUFFIXES lib64 lib
63 FIND_LIBRARY(OSGTEXT_LIBRARY 
64   NAMES osgText
65   PATHS
66     ~/Library/Frameworks
67     /Library/Frameworks
68   /usr/local
69   /usr
70   /sw
71   /opt/local
72   /opt/csw
73   /opt
74     PATH_SUFFIXES lib64 lib
77 SET(OSGTEXT_FOUND "NO")
78 IF(OSGTEXT_LIBRARY AND OSGTEXT_INCLUDE_DIR)
79   SET(OSGTEXT_FOUND "YES")
80 ENDIF(OSGTEXT_LIBRARY AND OSGTEXT_INCLUDE_DIR)