diff --git a/src/osgPlugins/CMakeLists.txt b/src/osgPlugins/CMakeLists.txt index dd9d3ddf3..9dfd92057 100644 --- a/src/osgPlugins/CMakeLists.txt +++ b/src/osgPlugins/CMakeLists.txt @@ -99,22 +99,29 @@ ENDIF (BUILD_OSG_3D_PLUGINS) IF (BUILD_OSG_OTHER_PLUGINS) SET(TARGET_DEFAULT_LABEL_PREFIX "Plug other") - #ADD_SUBDIRECTORY(logo) + ADD_SUBDIRECTORY(logo) ADD_SUBDIRECTORY(lws) ADD_SUBDIRECTORY(md2) ADD_SUBDIRECTORY(osgtgz) - #ADD_SUBDIRECTORY(quicktime) ADD_SUBDIRECTORY(tgz) - #ADD_SUBDIRECTORY(txp) - #ADD_SUBDIRECTORY(xine) + + # comment out txp plugin till it compiles cleanly... + # ADD_SUBDIRECTORY(txp) + ADD_SUBDIRECTORY(shp) ADD_SUBDIRECTORY(txf) + #ADD_SUBDIRECTORY(xine) + + IF(QUICKTIME_FOUND) + ADD_SUBDIRECTORY(quicktime) + ENDIF(QUICKTIME_FOUND) + IF(FREETYPE_FOUND) - ADD_SUBDIRECTORY(freetype) + ADD_SUBDIRECTORY(freetype) ENDIF(FREETYPE_FOUND) IF(ZLIB_FOUND) - ADD_SUBDIRECTORY(zip) + ADD_SUBDIRECTORY(zip) ENDIF(ZLIB_FOUND) ENDIF (BUILD_OSG_OTHER_PLUGINS) diff --git a/src/osgPlugins/logo/CMakeLists.txt b/src/osgPlugins/logo/CMakeLists.txt new file mode 100644 index 000000000..203d9f881 --- /dev/null +++ b/src/osgPlugins/logo/CMakeLists.txt @@ -0,0 +1,6 @@ +#this file is automatically generated + + +SET(TARGET_SRC ReaderWriterLOGO.cpp ) +#### end var setup ### +SETUP_PLUGIN(logo) diff --git a/src/osgPlugins/txp/CMakeLists.txt b/src/osgPlugins/txp/CMakeLists.txt new file mode 100644 index 000000000..ac8a889ea --- /dev/null +++ b/src/osgPlugins/txp/CMakeLists.txt @@ -0,0 +1,64 @@ +#this file is automatically generated + + +SET(TARGET_SRC + ReaderWriterTXP.cpp + TileMapper.cpp + trpage_basic.cpp + trpage_compat.cpp + trpage_geom.cpp + trpage_header.cpp + trpage_label.cpp + trpage_light.cpp + trpage_main.cpp + trpage_managers.cpp + trpage_material.cpp + trpage_model.cpp + trpage_nodes.cpp + trpage_parse.cpp + trpage_pparse.cpp + trpage_print.cpp + trpage_print_parse.cpp + trpage_range.cpp + trpage_rarchive.cpp + trpage_readbuf.cpp + trpage_scene.cpp + trpage_swap.cpp + trpage_tile.cpp + trpage_util.cpp + trpage_warchive.cpp + trpage_writebuf.cpp + TXPArchive.cpp + TXPIO.cpp + TXPNode.cpp + TXPPagedLOD.cpp + TXPPageManager.cpp + TXPParser.cpp + TXPSeamLOD.cpp +) +SET(TARGET_H + ReaderWriterTXP.h + TileMapper.h + trdll.h + trpage_compat.h + trpage_geom.h + trpage_ident.h + trpage_io.h + trpage_managers.h + trpage_print.h + trpage_read.h + trpage_scene.h + trpage_swap.h + trpage_sys.h + trpage_util.h + trpage_write.h + TXPArchive.h + TXPNode.h + TXPPagedLOD.h + TXPPageManager.h + TXPParser.h + TXPSeamLOD.h +) + +#### end var setup ### +SETUP_PLUGIN(txp)