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:
authorSergey Sharybin <sergey.vfx@gmail.com>2019-11-14 12:44:27 +0300
committerSergey Sharybin <sergey.vfx@gmail.com>2019-11-14 12:44:27 +0300
commit8ff9eb97fb7c0e25acaa051ea8ae196c932b10b6 (patch)
treedf0e30e0792da9283ca47f45602ec1ed81e3fe9b
parent92953fdefd78e84a74e491d34a86472680bce4c5 (diff)
parentc25a910e4ec090fd97529973b55ddbaf95d4ab42 (diff)
Merge branch 'blender-v2.81-release'
-rw-r--r--build_files/buildbot/slave_compile.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/build_files/buildbot/slave_compile.py b/build_files/buildbot/slave_compile.py
index f8bab19a1e9..1abbb80087b 100644
--- a/build_files/buildbot/slave_compile.py
+++ b/build_files/buildbot/slave_compile.py
@@ -29,14 +29,14 @@ def get_cmake_options(builder):
config_file = "build_files/cmake/config/blender_release.cmake"
options = ['-DCMAKE_BUILD_TYPE:STRING=Release',
- '-DWITH_GTESTS=ON',
- '-DPOSTINSTALL_SCRIPT:PATH=' + post_install_script]
+ '-DWITH_GTESTS=ON']
if builder.platform == 'mac':
options.append('-DCMAKE_OSX_ARCHITECTURES:STRING=x86_64')
options.append('-DCMAKE_OSX_DEPLOYMENT_TARGET=10.9')
elif builder.platform == 'win':
options.extend(['-G', 'Visual Studio 15 2017 Win64'])
+ options.extend(['-DPOSTINSTALL_SCRIPT:PATH=' + post_install_script])
elif builder.platform == 'linux':
config_file = "build_files/buildbot/config/blender_linux.cmake"