OpenSceneGraph/src/CMakeLists.txt

27 lines
435 B
CMake
Raw Normal View History

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