Added preliminary Performer plugin support, note, still missing are a range of Performer database libs that will be required.
This commit is contained in:
parent
52b5b468d5
commit
b8841f211d
@ -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
|
||||
|
55
CMakeModules/FindPerformer.cmake
Normal file
55
CMakeModules/FindPerformer.cmake
Normal 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)
|
||||
|
||||
|
@ -1,4 +1,3 @@
|
||||
dae - ported but not linking properly
|
||||
|
||||
pfb
|
||||
vrml
|
||||
pfb - ported but will need many additional libs
|
||||
|
15
src/osgPlugins/pfb/CMakeLists.txt
Normal file
15
src/osgPlugins/pfb/CMakeLists.txt
Normal 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)
|
Loading…
Reference in New Issue
Block a user