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>2016-02-17 16:14:41 +0300
committerBastien Montagne <montagne29@wanadoo.fr>2016-02-17 16:15:56 +0300
commitb04746a83dbddefe3306ca38ad14a73aa819634e (patch)
treea7f7ece8470e81124a23c12ad3087961b12da70b /build_files
parent3857b4600ff685e6348b79e940f2f38dcaf16326 (diff)
install_deps: OSD building: disable CUDA/OpenCL backends.
Those are can of worms to support properly (versions mismatch, etc.), and not used in Blender currently anyway.
Diffstat (limited to 'build_files')
-rwxr-xr-xbuild_files/build_environment/install_deps.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/build_files/build_environment/install_deps.sh b/build_files/build_environment/install_deps.sh
index 10425d3f551..a9339586e24 100755
--- a/build_files/build_environment/install_deps.sh
+++ b/build_files/build_environment/install_deps.sh
@@ -1808,7 +1808,7 @@ clean_OSD() {
compile_OSD() {
# To be changed each time we make edits that would modify the compiled result!
- osd_magic=0
+ osd_magic=1
_init_osd
# Clean install if needed!
@@ -1857,7 +1857,7 @@ compile_OSD() {
cmake_d="$cmake_d -D CMAKE_INSTALL_PREFIX=$_inst"
# ptex is only needed when nicholas bishop is ready
cmake_d="$cmake_d -D NO_PTEX=1"
- cmake_d="$cmake_d -D NO_CLEW=1"
+ cmake_d="$cmake_d -D NO_CLEW=1 -D NO_CUDA=1 -D NO_OPENCL=1"
# maya plugin, docs, tutorials, regression tests and examples are not needed
cmake_d="$cmake_d -D NO_MAYA=1 -D NO_DOC=1 -D NO_TUTORIALS=1 -D NO_REGRESSION=1 -DNO_EXAMPLES=1"