Added CMake support for txf, osgViewer and osgShadow plugins
This commit is contained in:
parent
da64127539
commit
9b30cf2960
@ -43,6 +43,8 @@ IF (BUILD_OSG_COMMON_PLUGINS)
|
||||
ADD_SUBDIRECTORY(osgParticle)
|
||||
ADD_SUBDIRECTORY(osgSim)
|
||||
ADD_SUBDIRECTORY(osgText)
|
||||
ADD_SUBDIRECTORY(osgViewer)
|
||||
ADD_SUBDIRECTORY(osgShadow)
|
||||
ADD_SUBDIRECTORY(osga)
|
||||
ADD_SUBDIRECTORY(rot)
|
||||
ADD_SUBDIRECTORY(scale)
|
||||
@ -105,6 +107,7 @@ IF (BUILD_OSG_OTHER_PLUGINS)
|
||||
#ADD_SUBDIRECTORY(txp)
|
||||
#ADD_SUBDIRECTORY(xine)
|
||||
ADD_SUBDIRECTORY(shp)
|
||||
ADD_SUBDIRECTORY(txf)
|
||||
|
||||
IF(FREETYPE_FOUND)
|
||||
ADD_SUBDIRECTORY(freetype)
|
||||
|
14
src/osgPlugins/osgShadow/CMakeLists.txt
Normal file
14
src/osgPlugins/osgShadow/CMakeLists.txt
Normal file
@ -0,0 +1,14 @@
|
||||
SET(TARGET_NAME osgShadow )
|
||||
SET(TARGET_SRC
|
||||
ParallelSplitShadowMap.cpp
|
||||
ReaderWriterOsgShadow.cpp
|
||||
ShadowedScene.cpp
|
||||
ShadowMap.cpp
|
||||
ShadowTechnique.cpp
|
||||
ShadowTexture.cpp
|
||||
ShadowVolume.cpp
|
||||
)
|
||||
SET(TARGET_ADDED_LIBRARIES osgShadow )
|
||||
|
||||
#### end var setup ###
|
||||
SETUP_PLUGIN()
|
9
src/osgPlugins/osgViewer/CMakeLists.txt
Normal file
9
src/osgPlugins/osgViewer/CMakeLists.txt
Normal file
@ -0,0 +1,9 @@
|
||||
SET(TARGET_NAME osgViewer )
|
||||
SET(TARGET_SRC
|
||||
View.cpp
|
||||
ReaderWriterOsgViewer.cpp
|
||||
)
|
||||
SET(TARGET_ADDED_LIBRARIES osgViewer )
|
||||
|
||||
#### end var setup ###
|
||||
SETUP_PLUGIN()
|
12
src/osgPlugins/txf/CMakeLists.txt
Normal file
12
src/osgPlugins/txf/CMakeLists.txt
Normal file
@ -0,0 +1,12 @@
|
||||
SET(TARGET_NAME txf )
|
||||
SET(TARGET_SRC
|
||||
ReaderWriterTXF.cpp
|
||||
TXFFont.cpp
|
||||
)
|
||||
SET(TARGET_H
|
||||
TXFFont.h
|
||||
)
|
||||
SET(TARGET_ADDED_LIBRARIES osgText )
|
||||
|
||||
#### end var setup ###
|
||||
SETUP_PLUGIN()
|
Loading…
Reference in New Issue
Block a user