diff options
author | Philip Lowman <philip@yhbt.com> | 2009-01-19 18:33:36 (GMT) |
---|---|---|
committer | Philip Lowman <philip@yhbt.com> | 2009-01-19 18:33:36 (GMT) |
commit | d1640b11def5076223a87680adb6341b1dbd2c10 (patch) | |
tree | 558e9c82969d7aa589bd0cebbf2e11a45aa25358 /Modules/FindosgGA.cmake | |
parent | d69e68609c29c14b3a88e2539d12940c04afb32b (diff) | |
download | CMake-d1640b11def5076223a87680adb6341b1dbd2c10.zip CMake-d1640b11def5076223a87680adb6341b1dbd2c10.tar.gz CMake-d1640b11def5076223a87680adb6341b1dbd2c10.tar.bz2 |
BUG: Fixed Issue #7331 Bugs in Findosg*.cmake. Also added OPENTHREADS_LIBRARIES.
Diffstat (limited to 'Modules/FindosgGA.cmake')
-rw-r--r-- | Modules/FindosgGA.cmake | 58 |
1 files changed, 13 insertions, 45 deletions
diff --git a/Modules/FindosgGA.cmake b/Modules/FindosgGA.cmake index c1585d0..8cd6020 100644 --- a/Modules/FindosgGA.cmake +++ b/Modules/FindosgGA.cmake @@ -11,9 +11,13 @@ # # Locate osgGA # This module defines -# OSGGA_LIBRARY -# OSGGA_FOUND, if false, do not try to link to osgGA -# OSGGA_INCLUDE_DIR, where to find the headers +# +# OSGGA_FOUND - Was osgGA found? +# OSGGA_INCLUDE_DIR - Where to find the headers +# OSGGA_LIBRARIES - The libraries to link against for the osgGA (use this) +# +# OSGGA_LIBRARY - The osgGA library +# OSGGA_LIBRARY_DEBUG - The osgGA debug library # # $OSGDIR is an environment variable that would # correspond to the ./configure --prefix=$OSGDIR @@ -25,46 +29,10 @@ # #include <osg/PositionAttitudeTransform> # #include <osgGA/FlightManipulator> -# Try the user's environment request before anything else. -FIND_PATH(OSGGA_INCLUDE_DIR osgGA/FlightManipulator - HINTS - $ENV{OSGGA_DIR} - $ENV{OSG_DIR} - $ENV{OSGDIR} - PATH_SUFFIXES include - PATHS - ~/Library/Frameworks - /Library/Frameworks - /usr/local - /usr - /sw # Fink - /opt/local # DarwinPorts - /opt/csw # Blastwave - /opt - [HKEY_LOCAL_MACHINE\\SYSTEM\\CurrentControlSet\\Control\\Session\ Manager\\Environment;OpenThreads_ROOT] - [HKEY_LOCAL_MACHINE\\SYSTEM\\CurrentControlSet\\Control\\Session\ Manager\\Environment;OSG_ROOT] -) - -FIND_LIBRARY(OSGGA_LIBRARY - NAMES osgGA - HINTS - $ENV{OSGGA_DIR} - $ENV{OSG_DIR} - $ENV{OSGDIR} - PATH_SUFFIXES lib64 lib - PATHS - ~/Library/Frameworks - /Library/Frameworks - /usr/local - /usr - /sw - /opt/local - /opt/csw - /opt -) - -SET(OSGGA_FOUND "NO") -IF(OSGGA_LIBRARY AND OSGGA_INCLUDE_DIR) - SET(OSGGA_FOUND "YES") -ENDIF(OSGGA_LIBRARY AND OSGGA_INCLUDE_DIR) +include(Findosg_functions) +OSG_FIND_PATH (OSGGA osgGA/FlightManipulator) +OSG_FIND_LIBRARY(OSGGA osgGA) +include(FindPackageHandleStandardArgs) +FIND_PACKAGE_HANDLE_STANDARD_ARGS(OSGGA DEFAULT_MSG + OSGGA_LIBRARY OSGGA_INCLUDE_DIR) |