Moved the TARGET_NAME setting into the SETUP_APPLICATION/EXAMPLE macro

This commit is contained in:
Robert Osfield 2007-03-19 17:18:59 +00:00
parent 9b30cf2960
commit d9a94f7890
82 changed files with 168 additions and 164 deletions

View File

@ -99,7 +99,9 @@ MACRO(SETUP_EXE)
ENDMACRO(SETUP_EXE)
MACRO(SETUP_APPLICATION)
MACRO(SETUP_APPLICATION APPLICATION_NAME)
SET(TARGET_NAME ${APPLICATION_NAME} )
SETUP_EXE()
@ -108,7 +110,9 @@ MACRO(SETUP_APPLICATION)
ENDMACRO(SETUP_APPLICATION)
MACRO(SETUP_EXAMPLE)
MACRO(SETUP_EXAMPLE EXAMPLE_NAME)
SET(TARGET_NAME ${EXAMPLE_NAME} )
SETUP_EXE()

View File

@ -1,6 +1,6 @@
#this file is automatically generated
SET(TARGET_NAME osgarchive )
SET(TARGET_SRC osgarchive.cpp )
#### end var setup ###
SETUP_APPLICATION()
SETUP_APPLICATION(osgarchive)

View File

@ -1,7 +1,7 @@
#this file is automatically generated
SET(TARGET_NAME osgconv )
SET(TARGET_SRC OrientationConverter.cpp osgconv.cpp )
SET(TARGET_H OrientationConverter.h )
#### end var setup ###
SETUP_APPLICATION()
SETUP_APPLICATION(osgconv)

View File

@ -1,6 +1,6 @@
#this file is automatically generated
SET(TARGET_NAME osgversion )
SET(TARGET_SRC osgversion.cpp )
#### end var setup ###
SETUP_APPLICATION()
SETUP_APPLICATION(osgversion)

View File

@ -1,6 +1,6 @@
#this file is automatically generated
SET(TARGET_NAME osgviewer )
SET(TARGET_SRC osgviewer.cpp )
#### end var setup ###
SETUP_APPLICATION()
SETUP_APPLICATION(osgviewer)

View File

@ -1,7 +1,7 @@
#this file is automatically generated
SET(TARGET_NAME osganimate )
SET(TARGET_SRC osganimate.cpp )
SET(TARGET_ADDED_LIBRARIES osgSim )
#### end var setup ###
SETUP_EXAMPLE()
SETUP_EXAMPLE(osganimate)

View File

@ -1,6 +1,6 @@
#this file is automatically generated
SET(TARGET_NAME osgautotransform )
SET(TARGET_SRC osgautotransform.cpp )
#### end var setup ###
SETUP_EXAMPLE()
SETUP_EXAMPLE(osgautotransform)

View File

@ -1,6 +1,6 @@
#this file is automatically generated
SET(TARGET_NAME osgbillboard )
SET(TARGET_SRC osgbillboard.cpp )
#### end var setup ###
SETUP_EXAMPLE()
SETUP_EXAMPLE(osgbillboard)

View File

@ -1,7 +1,7 @@
#this file is automatically generated
SET(TARGET_NAME osgblendequation )
SET(TARGET_SRC osgblendequation.cpp )
SET(TARGET_ADDED_LIBRARIES osgGA )
#### end var setup ###
SETUP_EXAMPLE()
SETUP_EXAMPLE(osgblendequation)

View File

@ -1,6 +1,6 @@
#this file is automatically generated
SET(TARGET_NAME osgcallback )
SET(TARGET_SRC osgcallback.cpp )
#### end var setup ###
SETUP_EXAMPLE()
SETUP_EXAMPLE(osgcallback)

View File

@ -1,6 +1,6 @@
#this file is automatically generated
SET(TARGET_NAME osgcamera )
SET(TARGET_SRC osgcamera.cpp )
#### end var setup ###
SETUP_EXAMPLE()
SETUP_EXAMPLE(osgcamera)

View File

@ -1,7 +1,7 @@
#this file is automatically generated
SET(TARGET_NAME osgcatch )
SET(TARGET_SRC osgcatch.cpp )
SET(TARGET_ADDED_LIBRARIES osgParticle )
#### end var setup ###
SETUP_EXAMPLE()
SETUP_EXAMPLE(osgcatch)

View File

@ -1,6 +1,6 @@
#this file is automatically generated
SET(TARGET_NAME osgclip )
SET(TARGET_SRC osgclip.cpp )
#### end var setup ###
SETUP_EXAMPLE()
SETUP_EXAMPLE(osgclip)

View File

@ -1,6 +1,6 @@
#this file is automatically generated
SET(TARGET_NAME osgcopy )
SET(TARGET_SRC osgcopy.cpp )
#### end var setup ###
SETUP_EXAMPLE()
SETUP_EXAMPLE(osgcopy)

View File

@ -1,6 +1,6 @@
#this file is automatically generated
SET(TARGET_NAME osgcubemap )
SET(TARGET_SRC osgcubemap.cpp )
#### end var setup ###
SETUP_EXAMPLE()
SETUP_EXAMPLE(osgcubemap)

View File

@ -1,7 +1,7 @@
#this file is automatically generated
SET(TARGET_NAME osgdelaunay )
SET(TARGET_SRC osgdelaunay.cpp )
SET(TARGET_ADDED_LIBRARIES osgGA )
#### end var setup ###
SETUP_EXAMPLE()
SETUP_EXAMPLE(osgdelaunay)

View File

@ -1,7 +1,7 @@
#this file is automatically generated
SET(TARGET_NAME osgdepthpartition )
SET(TARGET_SRC DepthPartitionNode.cpp DistanceAccumulator.cpp osgdepthpartition.cpp )
SET(TARGET_H DepthPartitionNode.h DistanceAccumulator.h )
#### end var setup ###
SETUP_EXAMPLE()
SETUP_EXAMPLE(osgdepthpartition)

View File

@ -1,7 +1,7 @@
#this file is automatically generated
SET(TARGET_NAME osgdepthshadow )
SET(TARGET_SRC osgdepthshadow.cpp )
SET(TARGET_ADDED_LIBRARIES osgShadow )
#### end var setup ###
SETUP_EXAMPLE()
SETUP_EXAMPLE(osgdepthshadow)

View File

@ -1,6 +1,6 @@
#this file is automatically generated
SET(TARGET_NAME osgdistortion )
SET(TARGET_SRC osgdistortion.cpp )
#### end var setup ###
SETUP_EXAMPLE()
SETUP_EXAMPLE(osgdistortion)

View File

@ -1,7 +1,7 @@
#this file is automatically generated
SET(TARGET_NAME osgfadetext )
SET(TARGET_SRC osgfadetext.cpp )
SET(TARGET_ADDED_LIBRARIES osgText )
#### end var setup ###
SETUP_EXAMPLE()
SETUP_EXAMPLE(osgfadetext)

View File

@ -1,7 +1,7 @@
#this file is automatically generated
SET(TARGET_NAME osgforest )
SET(TARGET_SRC osgforest.cpp )
SET(TARGET_ADDED_LIBRARIES osgGA )
#### end var setup ###
SETUP_EXAMPLE()
SETUP_EXAMPLE(osgforest)

View File

@ -1,8 +1,8 @@
#this file is automatically generated
SET(TARGET_NAME osgfxbrowser )
SET(TARGET_SRC Frame.cpp osgfxbrowser.cpp )
SET(TARGET_H Frame.h )
SET(TARGET_ADDED_LIBRARIES osgFX osgGA )
#### end var setup ###
SETUP_EXAMPLE()
SETUP_EXAMPLE(osgfxbrowser)

View File

@ -1,7 +1,7 @@
#this file is automatically generated
SET(TARGET_NAME osggeodemo )
SET(TARGET_SRC osggeodemo.cpp )
SET(TARGET_ADDED_LIBRARIES osgGA )
#### end var setup ###
SETUP_EXAMPLE()
SETUP_EXAMPLE(osggeodemo)

View File

@ -1,6 +1,6 @@
#this file is automatically generated
SET(TARGET_NAME osggeometry )
SET(TARGET_SRC osggeometry.cpp )
#### end var setup ###
SETUP_EXAMPLE()
SETUP_EXAMPLE(osggeometry)

View File

@ -1,6 +1,6 @@
#this file is automatically generated
SET(TARGET_NAME osghangglide )
SET(TARGET_SRC
GliderManipulator.cpp
base.cpp
@ -19,4 +19,4 @@ terrain_normals.h
terrain_texcoords.h
)
#### end var setup ###
SETUP_EXAMPLE()
SETUP_EXAMPLE(osghangglide)

View File

@ -1,6 +1,6 @@
#this file is automatically generated
SET(TARGET_NAME osghud )
SET(TARGET_SRC osghud.cpp )
#### end var setup ###
SETUP_EXAMPLE()
SETUP_EXAMPLE(osghud)

View File

@ -1,8 +1,8 @@
#this file is automatically generated
SET(TARGET_NAME osgimpostor )
SET(TARGET_SRC TestManipulator.cpp osgimpostor.cpp )
SET(TARGET_H TestManipulator.h )
SET(TARGET_ADDED_LIBRARIES osgSim )
#### end var setup ###
SETUP_EXAMPLE()
SETUP_EXAMPLE(osgimpostor)

View File

@ -1,7 +1,7 @@
#this file is automatically generated
SET(TARGET_NAME osgintersection )
SET(TARGET_SRC osgintersection.cpp )
SET(TARGET_ADDED_LIBRARIES osgSim )
#### end var setup ###
SETUP_EXAMPLE()
SETUP_EXAMPLE(osgintersection)

View File

@ -1,7 +1,7 @@
#this file is automatically generated
SET(TARGET_NAME osgkeyboard )
SET(TARGET_SRC osgkeyboard.cpp )
SET(TARGET_ADDED_LIBRARIES osgFX )
#### end var setup ###
SETUP_EXAMPLE()
SETUP_EXAMPLE(osgkeyboard)

View File

@ -1,7 +1,7 @@
#this file is automatically generated
SET(TARGET_NAME osgkeyboardmouse )
SET(TARGET_SRC osgkeyboardmouse.cpp )
SET(TARGET_ADDED_LIBRARIES osgFX )
#### end var setup ###
SETUP_EXAMPLE()
SETUP_EXAMPLE(osgkeyboardmouse)

View File

@ -1,6 +1,6 @@
#this file is automatically generated
SET(TARGET_NAME osglauncher )
SET(TARGET_SRC osglauncher.cpp )
#### end var setup ###
SETUP_EXAMPLE()
SETUP_EXAMPLE(osglauncher)

View File

@ -1,6 +1,6 @@
#this file is automatically generated
SET(TARGET_NAME osglight )
SET(TARGET_SRC osglight.cpp )
#### end var setup ###
SETUP_EXAMPLE()
SETUP_EXAMPLE(osglight)

View File

@ -1,7 +1,7 @@
#this file is automatically generated
SET(TARGET_NAME osglightpoint )
SET(TARGET_SRC osglightpoint.cpp )
SET(TARGET_ADDED_LIBRARIES osgSim )
#### end var setup ###
SETUP_EXAMPLE()
SETUP_EXAMPLE(osglightpoint)

View File

@ -1,7 +1,7 @@
#this file is automatically generated
SET(TARGET_NAME osglogicop )
SET(TARGET_SRC osglogicop.cpp )
SET(TARGET_ADDED_LIBRARIES osgGA )
#### end var setup ###
SETUP_EXAMPLE()
SETUP_EXAMPLE(osglogicop)

View File

@ -1,6 +1,6 @@
#this file is automatically generated
SET(TARGET_NAME osglogo )
SET(TARGET_SRC osglogo.cpp )
#### end var setup ###
SETUP_EXAMPLE()
SETUP_EXAMPLE(osglogo)

View File

@ -1,7 +1,7 @@
#this file is automatically generated
SET(TARGET_NAME osgmanipulator )
SET(TARGET_SRC osgmanipulator.cpp )
SET(TARGET_ADDED_LIBRARIES osgManipulator )
#### end var setup ###
SETUP_EXAMPLE()
SETUP_EXAMPLE(osgmanipulator)

View File

@ -1,6 +1,6 @@
#this file is automatically generated
SET(TARGET_NAME osgmotionblur )
SET(TARGET_SRC osgmotionblur.cpp )
#### end var setup ###
SETUP_EXAMPLE()
SETUP_EXAMPLE(osgmotionblur)

View File

@ -1,7 +1,7 @@
#this file is automatically generated
SET(TARGET_NAME osgmovie )
SET(TARGET_SRC osgmovie.cpp )
SET(TARGET_ADDED_LIBRARIES osgGA )
#### end var setup ###
SETUP_EXAMPLE()
SETUP_EXAMPLE(osgmovie)

View File

@ -1,7 +1,7 @@
#this file is automatically generated
SET(TARGET_NAME osgmultiplecameras )
SET(TARGET_SRC osgmultiplecameras.cpp )
SET(TARGET_ADDED_LIBRARIES osgFX )
#### end var setup ###
SETUP_EXAMPLE()
SETUP_EXAMPLE(osgmultiplecameras)

View File

@ -1,6 +1,6 @@
#this file is automatically generated
SET(TARGET_NAME osgmultitexture )
SET(TARGET_SRC osgmultitexture.cpp )
#### end var setup ###
SETUP_EXAMPLE()
SETUP_EXAMPLE(osgmultitexture)

View File

@ -1,7 +1,7 @@
#this file is automatically generated
SET(TARGET_NAME osgoccluder )
SET(TARGET_SRC osgoccluder.cpp )
SET(TARGET_ADDED_LIBRARIES osgGA )
#### end var setup ###
SETUP_EXAMPLE()
SETUP_EXAMPLE(osgoccluder)

View File

@ -1,6 +1,6 @@
#this file is automatically generated
SET(TARGET_NAME osgpagedlod )
SET(TARGET_SRC osgpagedlod.cpp )
#### end var setup ###
SETUP_EXAMPLE()
SETUP_EXAMPLE(osgpagedlod)

View File

@ -1,6 +1,6 @@
#this file is automatically generated
SET(TARGET_NAME osgparametric )
SET(TARGET_SRC osgparametric.cpp )
#### end var setup ###
SETUP_EXAMPLE()
SETUP_EXAMPLE(osgparametric)

View File

@ -1,7 +1,7 @@
#this file is automatically generated
SET(TARGET_NAME osgparticle )
SET(TARGET_SRC osgparticle.cpp )
SET(TARGET_ADDED_LIBRARIES osgParticle )
#### end var setup ###
SETUP_EXAMPLE()
SETUP_EXAMPLE(osgparticle)

View File

@ -1,7 +1,7 @@
#this file is automatically generated
SET(TARGET_NAME osgparticleeffects )
SET(TARGET_SRC osgparticleeffects.cpp )
SET(TARGET_ADDED_LIBRARIES osgParticle osgGA )
#### end var setup ###
SETUP_EXAMPLE()
SETUP_EXAMPLE(osgparticleeffects)

View File

@ -1,7 +1,7 @@
#this file is automatically generated
SET(TARGET_NAME osgphotoalbum )
SET(TARGET_SRC ImageReaderWriter.cpp PhotoArchive.cpp osgphotoalbum.cpp )
SET(TARGET_H ImageReaderWriter.h PhotoArchive.h )
#### end var setup ###
SETUP_EXAMPLE()
SETUP_EXAMPLE(osgphotoalbum)

View File

@ -1,7 +1,7 @@
#this file is automatically generated
SET(TARGET_NAME osgpick )
SET(TARGET_SRC osgpick.cpp )
SET(TARGET_ADDED_LIBRARIES osgGA )
#### end var setup ###
SETUP_EXAMPLE()
SETUP_EXAMPLE(osgpick)

View File

@ -1,7 +1,7 @@
#this file is automatically generated
SET(TARGET_NAME osgplanets )
SET(TARGET_SRC osgplanets.cpp )
SET(TARGET_ADDED_LIBRARIES osgGA )
#### end var setup ###
SETUP_EXAMPLE()
SETUP_EXAMPLE(osgplanets)

View File

@ -1,7 +1,7 @@
#this file is automatically generated
SET(TARGET_NAME osgpoints )
SET(TARGET_SRC osgpoints.cpp )
SET(TARGET_ADDED_LIBRARIES osgGA )
#### end var setup ###
SETUP_EXAMPLE()
SETUP_EXAMPLE(osgpoints)

View File

@ -1,6 +1,6 @@
#this file is automatically generated
SET(TARGET_NAME osgpointsprite )
SET(TARGET_SRC osgpointsprite.cpp )
#### end var setup ###
SETUP_EXAMPLE()
SETUP_EXAMPLE(osgpointsprite)

View File

@ -1,7 +1,7 @@
#this file is automatically generated
SET(TARGET_NAME osgprecipitation )
SET(TARGET_SRC osgprecipitation.cpp )
SET(TARGET_ADDED_LIBRARIES osgParticle )
#### end var setup ###
SETUP_EXAMPLE()
SETUP_EXAMPLE(osgprecipitation)

View File

@ -1,6 +1,6 @@
#this file is automatically generated
SET(TARGET_NAME osgprerender )
SET(TARGET_SRC osgprerender.cpp )
#### end var setup ###
SETUP_EXAMPLE()
SETUP_EXAMPLE(osgprerender)

View File

@ -1,6 +1,6 @@
#this file is automatically generated
SET(TARGET_NAME osgprerendercubemap )
SET(TARGET_SRC osgprerendercubemap.cpp )
#### end var setup ###
SETUP_EXAMPLE()
SETUP_EXAMPLE(osgprerendercubemap)

View File

@ -1,6 +1,6 @@
#this file is automatically generated
SET(TARGET_NAME osgreflect )
SET(TARGET_SRC osgreflect.cpp )
#### end var setup ###
SETUP_EXAMPLE()
SETUP_EXAMPLE(osgreflect)

View File

@ -1,7 +1,7 @@
#this file is automatically generated
SET(TARGET_NAME osgscalarbar )
SET(TARGET_SRC osgscalarbar.cpp )
SET(TARGET_ADDED_LIBRARIES osgSim )
#### end var setup ###
SETUP_EXAMPLE()
SETUP_EXAMPLE(osgscalarbar)

View File

@ -1,6 +1,6 @@
#this file is automatically generated
SET(TARGET_NAME osgscribe )
SET(TARGET_SRC osgscribe.cpp )
#### end var setup ###
SETUP_EXAMPLE()
SETUP_EXAMPLE(osgscribe)

View File

@ -1,6 +1,6 @@
#this file is automatically generated
SET(TARGET_NAME osgsequence )
SET(TARGET_SRC osgsequence.cpp )
#### end var setup ###
SETUP_EXAMPLE()
SETUP_EXAMPLE(osgsequence)

View File

@ -1,7 +1,7 @@
#this file is automatically generated
SET(TARGET_NAME osgshaders )
SET(TARGET_SRC GL2Scene.cpp Noise.cpp osgshaders.cpp )
SET(TARGET_H GL2Scene.h Noise.h )
#### end var setup ###
SETUP_EXAMPLE()
SETUP_EXAMPLE(osgshaders)

View File

@ -1,7 +1,7 @@
#this file is automatically generated
SET(TARGET_NAME osgshaderterrain )
SET(TARGET_SRC osgshaderterrain.cpp )
SET(TARGET_ADDED_LIBRARIES OpenThreads )
#### end var setup ###
SETUP_EXAMPLE()
SETUP_EXAMPLE(osgshaderterrain)

View File

@ -1,7 +1,7 @@
#this file is automatically generated
SET(TARGET_NAME osgshadow )
SET(TARGET_SRC osgshadow.cpp )
SET(TARGET_ADDED_LIBRARIES osgShadow )
#### end var setup ###
SETUP_EXAMPLE()
SETUP_EXAMPLE(osgshadow)

View File

@ -1,8 +1,8 @@
#this file is automatically generated
SET(TARGET_NAME osgshadowtexture )
SET(TARGET_SRC CreateShadowedScene.cpp osgshadowtexture.cpp )
SET(TARGET_H CreateShadowedScene.h )
SET(TARGET_ADDED_LIBRARIES osgShadow )
#### end var setup ###
SETUP_EXAMPLE()
SETUP_EXAMPLE(osgshadowtexture)

View File

@ -1,6 +1,6 @@
#this file is automatically generated
SET(TARGET_NAME osgshape )
SET(TARGET_SRC osgshape.cpp )
#### end var setup ###
SETUP_EXAMPLE()
SETUP_EXAMPLE(osgshape)

View File

@ -1,6 +1,6 @@
#this file is automatically generated
SET(TARGET_NAME osgsimple )
SET(TARGET_SRC osgsimple.cpp )
#### end var setup ###
SETUP_EXAMPLE()
SETUP_EXAMPLE(osgsimple)

View File

@ -1,6 +1,6 @@
#this file is automatically generated
SET(TARGET_NAME osgsimplifier )
SET(TARGET_SRC osgsimplifier.cpp )
#### end var setup ###
SETUP_EXAMPLE()
SETUP_EXAMPLE(osgsimplifier)

View File

@ -1,7 +1,7 @@
#this file is automatically generated
SET(TARGET_NAME osgsimulation )
SET(TARGET_SRC osgsimulation.cpp )
SET(TARGET_ADDED_LIBRARIES osgSim osgGA )
#### end var setup ###
SETUP_EXAMPLE()
SETUP_EXAMPLE(osgsimulation)

View File

@ -1,6 +1,6 @@
#this file is automatically generated
SET(TARGET_NAME osgslice )
SET(TARGET_SRC osgslice.cpp )
#### end var setup ###
SETUP_EXAMPLE()
SETUP_EXAMPLE(osgslice)

View File

@ -1,6 +1,6 @@
#this file is automatically generated
SET(TARGET_NAME osgspacewarp )
SET(TARGET_SRC osgspacewarp.cpp )
#### end var setup ###
SETUP_EXAMPLE()
SETUP_EXAMPLE(osgspacewarp)

View File

@ -1,7 +1,7 @@
#this file is automatically generated
SET(TARGET_NAME osgspheresegment )
SET(TARGET_SRC osgspheresegment.cpp )
SET(TARGET_ADDED_LIBRARIES osgSim osgParticle )
#### end var setup ###
SETUP_EXAMPLE()
SETUP_EXAMPLE(osgspheresegment)

View File

@ -1,6 +1,6 @@
#this file is automatically generated
SET(TARGET_NAME osgspotlight )
SET(TARGET_SRC osgspotlight.cpp )
#### end var setup ###
SETUP_EXAMPLE()
SETUP_EXAMPLE(osgspotlight)

View File

@ -1,6 +1,6 @@
#this file is automatically generated
SET(TARGET_NAME osgstereoimage )
SET(TARGET_SRC osgstereoimage.cpp )
#### end var setup ###
SETUP_EXAMPLE()
SETUP_EXAMPLE(osgstereoimage)

View File

@ -1,7 +1,7 @@
#this file is automatically generated
SET(TARGET_NAME osgteapot )
SET(TARGET_SRC osgteapot.cpp )
SET(TARGET_EXTERNAL_LIBRARIES ${OPENGL_LIBRARIES} )
#### end var setup ###
SETUP_EXAMPLE()
SETUP_EXAMPLE(osgteapot)

View File

@ -1,7 +1,7 @@
#this file is automatically generated
SET(TARGET_NAME osgterrain )
SET(TARGET_SRC osgterrain.cpp )
SET(TARGET_ADDED_LIBRARIES osgTerrain )
#### end var setup ###
SETUP_EXAMPLE()
SETUP_EXAMPLE(osgterrain)

View File

@ -1,6 +1,6 @@
#this file is automatically generated
SET(TARGET_NAME osgtessellate )
SET(TARGET_SRC osgtessellate.cpp )
#### end var setup ###
SETUP_EXAMPLE()
SETUP_EXAMPLE(osgtessellate)

View File

@ -1,7 +1,7 @@
#this file is automatically generated
SET(TARGET_NAME osgtext )
SET(TARGET_SRC osgtext.cpp )
SET(TARGET_ADDED_LIBRARIES osgText )
#### end var setup ###
SETUP_EXAMPLE()
SETUP_EXAMPLE(osgtext)

View File

@ -1,6 +1,6 @@
#this file is automatically generated
SET(TARGET_NAME osgtexture1D )
SET(TARGET_SRC osgtexture1D.cpp )
#### end var setup ###
SETUP_EXAMPLE()
SETUP_EXAMPLE(osgtexture1D)

View File

@ -1,6 +1,6 @@
#this file is automatically generated
SET(TARGET_NAME osgtexture2D )
SET(TARGET_SRC osgtexture2D.cpp )
#### end var setup ###
SETUP_EXAMPLE()
SETUP_EXAMPLE(osgtexture2D)

View File

@ -1,6 +1,6 @@
#this file is automatically generated
SET(TARGET_NAME osgtexture3D )
SET(TARGET_SRC osgtexture3D.cpp )
#### end var setup ###
SETUP_EXAMPLE()
SETUP_EXAMPLE(osgtexture3D)

View File

@ -1,6 +1,6 @@
#this file is automatically generated
SET(TARGET_NAME osgtexturerectangle )
SET(TARGET_SRC osgtexturerectangle.cpp )
#### end var setup ###
SETUP_EXAMPLE()
SETUP_EXAMPLE(osgtexturerectangle)

View File

@ -1,7 +1,7 @@
#this file is automatically generated
SET(TARGET_NAME osgunittests )
SET(TARGET_SRC UnitTestFramework.cpp UnitTests_osg.cpp osgunittests.cpp performance.cpp )
SET(TARGET_H UnitTestFramework.h performance.h )
#### end var setup ###
SETUP_EXAMPLE()
SETUP_EXAMPLE(osgunittests)

View File

@ -1,6 +1,6 @@
#this file is automatically generated
SET(TARGET_NAME osgvertexprogram )
SET(TARGET_SRC osgvertexprogram.cpp )
#### end var setup ###
SETUP_EXAMPLE()
SETUP_EXAMPLE(osgvertexprogram)

View File

@ -1,6 +1,6 @@
#this file is automatically generated
SET(TARGET_NAME osgvolume )
SET(TARGET_SRC osgvolume.cpp )
#### end var setup ###
SETUP_EXAMPLE()
SETUP_EXAMPLE(osgvolume)

View File

@ -1,6 +1,6 @@
#this file is automatically generated
SET(TARGET_NAME osgwindows )
SET(TARGET_SRC osgwindows.cpp )
#### end var setup ###
SETUP_EXAMPLE()
SETUP_EXAMPLE(osgwindows)