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>2020-06-16 16:52:18 +0300
committerSergey Sharybin <sergey.vfx@gmail.com>2020-06-16 17:17:47 +0300
commit2c2fd9f0368870678a4c0eeb71d030a3899266d7 (patch)
tree3c4bb86cb828c81e07c0038dcb8fcaff40a7a3ef /build_files/buildbot
parentbc7a4b126afb6789e301c148d8f07e38365c1545 (diff)
Buildbot: Switch WIndows builds to MSVC 2019
Diffstat (limited to 'build_files/buildbot')
-rw-r--r--build_files/buildbot/slave_compile.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/build_files/buildbot/slave_compile.py b/build_files/buildbot/slave_compile.py
index 65cadea587b..1bb72501648 100644
--- a/build_files/buildbot/slave_compile.py
+++ b/build_files/buildbot/slave_compile.py
@@ -35,7 +35,7 @@ def get_cmake_options(builder):
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(['-G', 'Visual Studio 16 2019', '-A', 'x64'])
options.extend(['-DPOSTINSTALL_SCRIPT:PATH=' + post_install_script])
elif builder.platform == 'linux':
config_file = "build_files/buildbot/config/blender_linux.cmake"