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:
authorRay Molenkamp <github@lazydodo.com>2020-04-30 22:33:33 +0300
committerRay Molenkamp <github@lazydodo.com>2020-04-30 22:34:11 +0300
commit1d63db20445a1ed14adaf769728238c9a42f13c8 (patch)
treeabae134b648a30b30a0bca441905878cb327a01f /build_files
parent1960b8a361eedf2f1717e8525c54de21d6ac7d82 (diff)
Fix: Windows build bot script error
Partial revert of D7520
Diffstat (limited to 'build_files')
-rw-r--r--build_files/buildbot/slave_compile.py4
1 files changed, 0 insertions, 4 deletions
diff --git a/build_files/buildbot/slave_compile.py b/build_files/buildbot/slave_compile.py
index ddb059e14af..65cadea587b 100644
--- a/build_files/buildbot/slave_compile.py
+++ b/build_files/buildbot/slave_compile.py
@@ -37,10 +37,6 @@ def get_cmake_options(builder):
elif builder.platform == 'win':
options.extend(['-G', 'Visual Studio 15 2017 Win64'])
options.extend(['-DPOSTINSTALL_SCRIPT:PATH=' + post_install_script])
-
- info = buildbot_utils.VersionInfo(builder)
- if info.version_cycle == 'release':
- options.append('-DWITH_WINDOWS_PDB=OFF')
elif builder.platform == 'linux':
config_file = "build_files/buildbot/config/blender_linux.cmake"