[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [52378] trunk/blender/build_files/ build_environment/install_deps.sh: Update to use new WITH_STATIC_LIBS CMake flag when ALL_STATIC is true.

Bastien Montagne montagne29 at wanadoo.fr
Mon Nov 19 21:24:07 CET 2012


Revision: 52378
          http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-blender&revision=52378
Author:   mont29
Date:     2012-11-19 20:24:06 +0000 (Mon, 19 Nov 2012)
Log Message:
-----------
Update to use new WITH_STATIC_LIBS CMake flag when ALL_STATIC is true.

Modified Paths:
--------------
    trunk/blender/build_files/build_environment/install_deps.sh

Modified: trunk/blender/build_files/build_environment/install_deps.sh
===================================================================
--- trunk/blender/build_files/build_environment/install_deps.sh	2012-11-19 19:43:03 UTC (rev 52377)
+++ trunk/blender/build_files/build_environment/install_deps.sh	2012-11-19 20:24:06 UTC (rev 52378)
@@ -1132,14 +1132,14 @@
   INFO ""
   INFO "If you're using CMake add this to your configuration flags:"
 
+  if $ALL_STATIC; then
+    INFO "  -D WITH_STATIC_LIBS=ON"
+  fi
+
   if [ -d $INST/boost ]; then
     INFO "  -D BOOST_ROOT=$INST/boost"
     INFO "  -D Boost_NO_SYSTEM_PATHS=ON"
-    if $ALL_STATIC; then
-      INFO "  -D Boost_USE_STATIC_LIBS=ON"
-    fi
   elif $ALL_STATIC; then
-    INFO "  -D Boost_USE_STATIC_LIBS=ON"
     INFO "  -D Boost_USE_ICU=ON"
   fi
 




More information about the Bf-blender-cvs mailing list