Cycles: remove automatic copy of boost/openimageio shared libraries to binary

folder, this doesn't work well, proper solution is to statically link these in
official builds.
This commit is contained in:
Brecht Van Lommel 2011-08-24 13:43:34 +00:00
parent 48b4de3152
commit 564eae2dc4

@ -405,22 +405,6 @@ if(UNIX AND NOT APPLE)
# install(CODE "execute_process(COMMAND find ${TARGETDIR}/${BLENDER_VERSION}/python/lib/ -name '*.so' -exec strip -s {} '\;')")
endif()
endif()
# XXX this is non standard
if(WITH_OPENIMAGEIO)
set(oiio_install_libs
${OPENIMAGEIO_LIBPATH}/lib${OPENIMAGEIO_LIBRARY}.so
${BOOST_LIBRARIES})
list(REMOVE_ITEM oiio_install_libs optimized)
list(REMOVE_ITEM oiio_install_libs debug)
install(
FILES ${oiio_install_libs}
DESTINATION ${TARGETDIR}
)
endif()
elseif(WIN32)
set(TARGETDIR_VER ${TARGETDIR}/${BLENDER_VERSION})