Files
OpenSceneGraph/src/CMakeLists.txt
2007-03-12 11:49:10 +00:00

27 lines
467 B
CMake

SUBDIRS(
osg
osgDB
osgUtil
osgGA
osgText
osgManipulator
osgSim
osgFX
osgParticle
osgShadow
osgTerrain
osgViewer
)
OPTION(BUILD_OSG_PLUGINS "Enable to build OSG Plugins" ON)
IF (BUILD_OSG_PLUGINS)
ADD_SUBDIRECTORY(osgPlugins)
ENDIF(BUILD_OSG_PLUGINS)
OPTION(BUILD_OSG_WRAPPERS "Enable to build Introspection and Wrappers" OFF)
IF (BUILD_OSG_WRAPPERS)
ADD_SUBDIRECTORY(osgIntrospection)
ADD_SUBDIRECTORY(osgWrappers)
ENDIF(BUILD_OSG_WRAPPERS)