27 lines
435 B
CMake
27 lines
435 B
CMake
|
|
||
|
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)
|