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:
authorBrecht Van Lommel <brechtvanlommel@gmail.com>2018-07-11 22:30:37 +0300
committerBrecht Van Lommel <brechtvanlommel@gmail.com>2018-07-11 22:38:00 +0300
commitb843753ad56a89035faeeb94dbeb39060c0c9630 (patch)
tree88e6ccdb5681b38e073b5135d79828553d41cc94
parent08274433e1bd9db5a2a27e5d2f8862e9cc3f27f0 (diff)
Buildbot: initial configuration for Visual Studio 2017.
-rw-r--r--build_files/buildbot/slave_compile.py8
1 files changed, 7 insertions, 1 deletions
diff --git a/build_files/buildbot/slave_compile.py b/build_files/buildbot/slave_compile.py
index ff19bcce758..c43bb88b270 100644
--- a/build_files/buildbot/slave_compile.py
+++ b/build_files/buildbot/slave_compile.py
@@ -78,7 +78,13 @@ if 'cmake' in builder:
# cmake_extra_options.append('-DCUDA_NVCC_EXECUTABLE=/usr/local/cuda-hack/nvcc')
elif builder.startswith('win'):
- if builder.endswith('_vc2015'):
+ if builder.endswith('_vc2017'):
+ if builder.startswith('win64'):
+ cmake_options.extend(['-G', 'Visual Studio 15 2017 Win64'])
+ elif builder.startswith('win32'):
+ bits = 32
+ cmake_options.extend(['-G', 'Visual Studio 15 2017'])
+ elif builder.endswith('_vc2015'):
if builder.startswith('win64'):
cmake_options.extend(['-G', 'Visual Studio 14 2015 Win64'])
elif builder.startswith('win32'):