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:
authorBastien Montagne <montagne29@wanadoo.fr>2019-03-25 13:03:52 +0300
committerBastien Montagne <montagne29@wanadoo.fr>2019-03-25 13:04:26 +0300
commitd46cb486ed31401152585fe3b201538b9adb2d0b (patch)
treeb93bd16d8eecf0f721e46fed6dedfc6e81d68ce0
parentcfe044b4efefe4b52252e4943657be7d0812cafe (diff)
Include blosc, embree and opencollada into BUILD_NOTES.txt file.
For custom path selected during 'install_deps.sh' using '--source'/'--install', paths for blosc, embree and opencollada are not printed/inclued into BUILD_NOTES.txt file. As '/opt/lib/<package>' paths are hardcoded into CMakes's Find* modules, this error is not noticeable, but for custom paths it is. This patch includes those fixes/prints for those packages. Reviewers: mont29 Reviewed By: mont29 Differential Revision: https://developer.blender.org/D4574
-rwxr-xr-xbuild_files/build_environment/install_deps.sh15
1 files changed, 15 insertions, 0 deletions
diff --git a/build_files/build_environment/install_deps.sh b/build_files/build_environment/install_deps.sh
index 19278e1a086..5d95bd359e1 100755
--- a/build_files/build_environment/install_deps.sh
+++ b/build_files/build_environment/install_deps.sh
@@ -4529,18 +4529,33 @@ print_info() {
PRINT " $_1"
_buildargs="$_buildargs $_1"
fi
+ if [ -d $INST/blosc ]; then
+ _1="-D BLOSC_ROOT_DIR=$INST/blosc"
+ PRINT " $_1"
+ _buildargs="$_buildargs $_1"
+ fi
fi
if [ "$WITH_OPENCOLLADA" = true ]; then
_1="-D WITH_OPENCOLLADA=ON"
PRINT " $_1"
_buildargs="$_buildargs $_1"
+ if [ -d $INST/opencollada ]; then
+ _1="-D OPENCOLLADA_ROOT_DIR=$INST/opencollada"
+ PRINT " $_1"
+ _buildargs="$_buildargs $_1"
+ fi
fi
if [ "$WITH_EMBREE" = true ]; then
_1="-D WITH_CYCLES_EMBREE=ON"
PRINT " $_1"
_buildargs="$_buildargs $_1"
+ if [ -d $INST/embree ]; then
+ _1="-D EMBREE_ROOT_DIR=$INST/embree"
+ PRINT " $_1"
+ _buildargs="$_buildargs $_1"
+ fi
fi
if [ "$WITH_JACK" = true ]; then