Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrecht Van Lommel <brechtvanlommel@pandora.be>2011-08-24 17:43:34 +0400
committerBrecht Van Lommel <brechtvanlommel@pandora.be>2011-08-24 17:43:34 +0400
commit564eae2dc40a99b53ef01390e58813998dd61953 (patch)
treef2e6dc57b1fd5f87fe95bb6e98c8b34671195086 /source/creator
parent48b4de31521501203c39fc7efa9aca7d018b6a1c (diff)
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.
Diffstat (limited to 'source/creator')
-rw-r--r--source/creator/CMakeLists.txt16
1 files changed, 0 insertions, 16 deletions
diff --git a/source/creator/CMakeLists.txt b/source/creator/CMakeLists.txt
index 43dc998ebc9..9e9a1ef7db1 100644
--- a/source/creator/CMakeLists.txt
+++ b/source/creator/CMakeLists.txt
@@ -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})