From a291537a21e63cf0a34035b674474af2ea9eb5bd Mon Sep 17 00:00:00 2001 From: Robert Osfield Date: Sun, 11 Mar 2007 13:15:15 +0000 Subject: [PATCH] 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. --- src/osgWrappers/CMakeLists.txt | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/osgWrappers/CMakeLists.txt b/src/osgWrappers/CMakeLists.txt index 6360def01..20d972413 100644 --- a/src/osgWrappers/CMakeLists.txt +++ b/src/osgWrappers/CMakeLists.txt @@ -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} ) \ No newline at end of file +ENDFOREACH(LIB ${OSGWRAPPER_LIB_LIST} )