Added preliminary Performer plugin support, note, still missing are a range of Performer database libs that will be required.

This commit is contained in:
Robert Osfield 2007-05-05 16:24:07 +00:00
parent 52b5b468d5
commit b8841f211d
4 changed files with 72 additions and 2 deletions

View File

@ -127,6 +127,7 @@ FIND_PACKAGE(Jasper)
FIND_PACKAGE(COLLADA)
FIND_PACKAGE(Xine)
FIND_PACKAGE(OpenVRML)
FIND_PACKAGE(Performer)
# Platform specific:
# (We can approach this one of two ways. We can try to FIND everything

View File

@ -0,0 +1,55 @@
# Locate Performer
# This module defines
# PERFORMER_LIBRARY
# PERFORMER_FOUND, if false, do not try to link to gdal
# PERFORMER_INCLUDE_DIR, where to find the headers
#
# $PERFORMER_DIR is an environment variable that would
# correspond to the ./configure --prefix=$PERFORMER_DIR
#
# Created by Robert Osfield.
FIND_PATH(PERFORMER_INCLUDE_DIR Performer/pfdu.h
$ENV{PERFORMER_DIR}/include
$ENV{PERFORMER_DIR}
$ENV{OSGDIR}/include
$ENV{OSGDIR}
$ENV{OSG_ROOT}/include
~/Library/Frameworks
/Library/Frameworks
/usr/local/include
/usr/include
/sw/include # Fink
/opt/local/include # DarwinPorts
/opt/csw/include # Blastwave
/opt/include
[HKEY_LOCAL_MACHINE\\SYSTEM\\CurrentControlSet\\Control\\Session\ Manager\\Environment;OSG_ROOT]/include
/usr/freeware/include
)
FIND_LIBRARY(PERFORMER_LIBRARY
NAMES pf
PATHS
$ENV{PERFORMER_DIR}/lib
$ENV{PERFORMER_DIR}
$ENV{OSGDIR}/lib
$ENV{OSGDIR}
$ENV{OSG_ROOT}/lib
~/Library/Frameworks
/Library/Frameworks
/usr/local/lib
/usr/lib
/sw/lib
/opt/local/lib
/opt/csw/lib
/opt/lib
[HKEY_LOCAL_MACHINE\\SYSTEM\\CurrentControlSet\\Control\\Session\ Manager\\Environment;OSG_ROOT]/lib
/usr/freeware/lib64
)
SET(PERFORMER_FOUND "NO")
IF(PERFORMER_LIBRARY AND PERFORMER_INCLUDE_DIR)
SET(PERFORMER_FOUND "YES")
ENDIF(PERFORMER_LIBRARY AND PERFORMER_INCLUDE_DIR)

View File

@ -1,4 +1,3 @@
dae - ported but not linking properly
pfb
vrml
pfb - ported but will need many additional libs

View File

@ -0,0 +1,15 @@
INCLUDE_DIRECTORIES( ${PERFORMER_INCLUDE_DIR} )
SET(TARGET_SRC
ReaderWriterPFB.cpp
ConvertFromPerformer.cpp
)
SET(TARGET_H
ConvertFromPerformer.h
)
SET(TARGET_LIBRARIES_VARS PERFORMER_LIBRARY )
#### end var setup ###
SETUP_PLUGIN(pfb)