Skip to content
Snippets Groups Projects
Commit 7be2a175 authored by Jens Güther's avatar Jens Güther
Browse files

updated cmake support python lib

parent ed4a934b
No related branches found
No related tags found
1 merge request!309Reduce build time in VS Jenkins builds
......@@ -312,6 +312,9 @@ class CMakeLauncher(object):
self._add_common_cmake_build_options(cmake_argv, params)
self._add_cmake_build_jobs_option(cmake_argv, params.cmk_generator_alias, params.cmk_build_jobs)
self._add_cmake_build_verbosity_option(cmake_argv, params.cmk_generator_alias, params.cmk_build_verbosity)
if params.cmk_generator_alias.startswith('vs'):
# msbuild option to disable node reuse -> jenkins build seems to idle at the end.
self._add_cmake_build_tool_options(cmake_argv, ['/nr:false'])
if cmake_argv_optional:
self._add_cmake_build_tool_options(cmake_argv, cmake_argv_optional)
retv = self.launch_cmake(cmake_argv)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment