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:
authorMartijn Berger <martijn.berger@gmail.com>2014-11-11 13:35:38 +0300
committerMartijn Berger <martijn.berger@gmail.com>2014-11-11 17:48:21 +0300
commitf25f1a66884944530635839bedec2176043f41ff (patch)
tree283e188946ae58a9e1d067b6d324dfa7e3cc8a08 /build_files
parent63d0197f9b5bcb2f1a46366ab3753c2c57b2220c (diff)
buildbot: fix: cmake generator is kind of sensitive
Diffstat (limited to 'build_files')
-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 c9a2891fe97..f57ca2ac9b7 100644
--- a/build_files/buildbot/slave_compile.py
+++ b/build_files/buildbot/slave_compile.py
@@ -48,9 +48,9 @@ if 'cmake' in builder:
if 'win64' in builder:
- cmake_options.append('-G Visual Studio 12 2013 Win64')
+ cmake_options.append(['-G','"Visual Studio 12 2013 Win64"'])
elif 'win32' in builder:
- cmake_options.append('-G Visual Studio 12 2013')
+ cmake_options.append(['-G','"Visual Studio 12 2013"'])
# configure and make