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-06-28 18:25:52 +0400
committerBrecht Van Lommel <brechtvanlommel@pandora.be>2011-06-28 18:25:52 +0400
commitf351e3572d163f0ae01d90f72789c49d3352e28b (patch)
treecc4d458d94c296c101ee4020f80e8fd361060ec0 /intern/cycles/blender/CMakeLists.txt
parentbdb92dab74eb46e3444949d79ab9ee8ecdc65b0f (diff)
Cycles: fix for dynamic library copying on linux.
Diffstat (limited to 'intern/cycles/blender/CMakeLists.txt')
-rw-r--r--intern/cycles/blender/CMakeLists.txt4
1 files changed, 3 insertions, 1 deletions
diff --git a/intern/cycles/blender/CMakeLists.txt b/intern/cycles/blender/CMakeLists.txt
index 9367bb6382f..013c671468e 100644
--- a/intern/cycles/blender/CMakeLists.txt
+++ b/intern/cycles/blender/CMakeLists.txt
@@ -94,6 +94,9 @@ IF(UNIX)
${Boost_LIBRARIES}
${OSL_LIBRARIES}
${PARTIO_LIBRARIES})
+
+ LIST(REMOVE_ITEM install_libs optimized)
+ LIST(REMOVE_ITEM install_libs debug)
INSTALL(FILES ${install_libs}
DESTINATION ${CYCLES_INSTALL_PATH}/cycles/lib)
@@ -115,7 +118,6 @@ IF(UNIX)
CODE
"
EXECUTE_PROCESS(COMMAND ${install_name_command} ${CYCLES_INSTALL_PATH}/cycles/libcycles_blender.so)
- EXECUTE_PROCESS(COMMAND echo ${install_name_command} ${CYCLES_INSTALL_PATH}/cycles/libcycles_blender.so)
"
)
ELSE()