8c8b8f3305
git-svn-id: http://svn.openscenegraph.org/osg/OpenSceneGraph/trunk@14759 16af8721-9629-0410-8352-f15c8da7e697
54 lines
1.1 KiB
CMake
54 lines
1.1 KiB
CMake
|
|
IF(DYNAMIC_OPENSCENEGRAPH)
|
|
ADD_DEFINITIONS(-DOSGPRESENTATION_LIBRARY)
|
|
ELSE()
|
|
ADD_DEFINITIONS(-DOSG_LIBRARY_STATIC)
|
|
ENDIF()
|
|
|
|
SET(LIB_NAME osgPresentation)
|
|
SET(HEADER_PATH ${OpenSceneGraph_SOURCE_DIR}/include/${LIB_NAME})
|
|
SET(TARGET_H
|
|
${HEADER_PATH}/Export
|
|
${HEADER_PATH}/Cursor
|
|
${HEADER_PATH}/AnimationMaterial
|
|
${HEADER_PATH}/CompileSlideCallback
|
|
${HEADER_PATH}/PickEventHandler
|
|
${HEADER_PATH}/PropertyManager
|
|
${HEADER_PATH}/KeyEventHandler
|
|
${HEADER_PATH}/SlideEventHandler
|
|
${HEADER_PATH}/SlideShowConstructor
|
|
${HEADER_PATH}/Timeout
|
|
)
|
|
|
|
# FIXME: For OS X, need flag for Framework or dylib
|
|
SET(TARGET_SRC
|
|
Cursor.cpp
|
|
AnimationMaterial.cpp
|
|
CompileSlideCallback.cpp
|
|
PickEventHandler.cpp
|
|
PropertyManager.cpp
|
|
KeyEventHandler.cpp
|
|
SlideEventHandler.cpp
|
|
SlideShowConstructor.cpp
|
|
Timeout.cpp
|
|
${OPENSCENEGRAPH_VERSIONINFO_RC}
|
|
)
|
|
|
|
SET(TARGET_LIBRARIES
|
|
osgViewer
|
|
osgUI
|
|
osgWidget
|
|
osgManipulator
|
|
osgVolume
|
|
osgFX
|
|
osgText
|
|
osgGA
|
|
osgUtil
|
|
osgDB
|
|
osg
|
|
OpenThreads
|
|
)
|
|
|
|
SETUP_LIBRARY(${LIB_NAME})
|
|
|