Buildbot: Don't specify install directory for Windows builds

Installation is to happen within the build folder, no special folder for
this is required.
This commit is contained in:
Sergey Sharybin
2015-12-02 22:55:42 +05:00
parent 9bcd604e1d
commit 62521fce48

View File

@@ -65,6 +65,7 @@ if 'cmake' in builder:
cmake_options.append('-DCMAKE_OSX_ARCHITECTURES:STRING=ppc') cmake_options.append('-DCMAKE_OSX_ARCHITECTURES:STRING=ppc')
elif builder.startswith('win'): elif builder.startswith('win'):
install_dir = None
if builder.startswith('win64'): if builder.startswith('win64'):
cmake_options.append(['-G', '"Visual Studio 12 2013 Win64"']) cmake_options.append(['-G', '"Visual Studio 12 2013 Win64"'])
elif builder.startswith('win32'): elif builder.startswith('win32'):