[Bf-blender-cvs] [c1343ab] alembic_pointcache: Some changes to the Alembic build script for specifying the install prefix and build type.

Lukas Tönne noreply at git.blender.org
Tue Nov 4 11:17:11 CET 2014


Commit: c1343ab49857bbb26750c758fb163fa0e30cee20
Author: Lukas Tönne
Date:   Tue Nov 4 10:19:21 2014 +0100
Branches: alembic_pointcache
https://developer.blender.org/rBc1343ab49857bbb26750c758fb163fa0e30cee20

Some changes to the Alembic build script for specifying the install
prefix and build type.

Alembic build files are still horrible, have to find a reliable solution
for that.

===================================================================

M	build_files/build_environment/install_deps.sh

===================================================================

diff --git a/build_files/build_environment/install_deps.sh b/build_files/build_environment/install_deps.sh
index 1cf068c..b6874ac 100755
--- a/build_files/build_environment/install_deps.sh
+++ b/build_files/build_environment/install_deps.sh
@@ -1832,9 +1832,10 @@ EOF
     # XXX Alembic creates a subfolder itself ... rather than fix their
     # stupid build files, just expect this here by using $INST as prefix
     export ALEMBIC_INSTALL_PREFIX=$INST
-    export CMAKE_BUILD_TYPE=Release
 
-    cmake_d="-D BUILD_SHARED_LIBS=ON"
+    cmake_d="-D CMAKE_BUILD_TYPE=Release"
+    cmake_d="$cmake_d -D CMAKE_INSTALL_PREFIX=$INST"
+    cmake_d="$cmake_d -D BUILD_SHARED_LIBS=ON"
     cmake_d="$cmake_d -D BUILD_STATIC_LIBS=ON"
     cmake_d="$cmake_d -D USE_PYTHON=OFF"
     cmake_d="$cmake_d -D USE_PYALEMBIC=OFF"




More information about the Bf-blender-cvs mailing list