Changed the output directory for wrappers to osgPlugins and the name to osgwrapper_ to

make it consitent with the previous places used for wrappers.  

Note, the wrappers still compile to libosgwarapper_, this will need fixing.
This commit is contained in:
Robert Osfield 2007-03-11 13:15:15 +00:00
parent 083618cc65
commit a291537a21

View File

@ -1,7 +1,9 @@
PROJECT(OSG_WRAPPERS)
SET(LIBRARY_OUTPUT_PATH "${LIBRARY_OUTPUT_PATH}/osgPlugins")
MACRO(ADD_WRAPPER_LIB SUBDIR EXPORTDEF)
SET(TARGET_NAME "wrapper_${SUBDIR}")
SET(TARGET_NAME "osgwrapper_${SUBDIR}")
# MESSAGE(STATUS "--inizio-->${TARGET_NAME}<->${LINK}<-")
FILE(GLOB SRC_FILES ${OSGWRAPPER_DIR}/${SUBDIR}/*.cpp)
@ -86,4 +88,4 @@ SET(OSGWRAPPER_LIB_LIST
SET(OSGWRAPPER_DIR ${CMAKE_CURRENT_SOURCE_DIR})
FOREACH(LIB ${OSGWRAPPER_LIB_LIST} )
ADD_WRAPPER_LIB(${LIB} OSGWRAPPERS_LIBRARY LINK osg ${LIB} osgIntrospection)
ENDFOREACH(LIB ${OSGWRAPPER_LIB_LIST} )
ENDFOREACH(LIB ${OSGWRAPPER_LIB_LIST} )