[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [39658] trunk/blender/CMakeLists.txt: cmake: skip rpath (paths to libs) for portable distrobution

Campbell Barton ideasman42 at gmail.com
Tue Aug 23 22:19:11 CEST 2011


Revision: 39658
          http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-blender&revision=39658
Author:   campbellbarton
Date:     2011-08-23 20:19:08 +0000 (Tue, 23 Aug 2011)
Log Message:
-----------
cmake: skip rpath (paths to libs) for portable distrobution

Modified Paths:
--------------
    trunk/blender/CMakeLists.txt

Modified: trunk/blender/CMakeLists.txt
===================================================================
--- trunk/blender/CMakeLists.txt	2011-08-23 19:58:15 UTC (rev 39657)
+++ trunk/blender/CMakeLists.txt	2011-08-23 20:19:08 UTC (rev 39658)
@@ -274,6 +274,11 @@
 
 TEST_SSE_SUPPORT()
 
+# don't store paths to libs for portable distrobution
+if(WITH_INSTALL_PORTABLE)
+	set(CMAKE_SKIP_BUILD_RPATH TRUE)
+endif()
+
 #-----------------------------------------------------------------------------
 # Initialize un-cached vars, avoid unused warning
 




More information about the Bf-blender-cvs mailing list