mirror of
https://github.com/reactos/CMake.git
synced 2024-12-16 08:07:29 +00:00
Fixed parallel build for generators with EXTRA.
Fixed parallel build for projects using generators that have the CMAKE_EXTRA_GENERATOR as well as CMAKE_GENERATOR. Thanks to Bill Hoffman for helping me to track this one down, I missed parallel builds.
This commit is contained in:
parent
ef9dd49d3d
commit
beeca11c9b
@ -597,8 +597,7 @@ function(_ep_get_build_command name step cmd_var)
|
||||
# CMake project. Select build command based on generator.
|
||||
get_target_property(cmake_generator ${name} _EP_CMAKE_GENERATOR)
|
||||
if("${CMAKE_GENERATOR}" MATCHES "Make" AND
|
||||
("${cmake_generator}" STREQUAL "${CMAKE_GENERATOR}" OR
|
||||
NOT cmake_generator))
|
||||
("${cmake_generator}" MATCHES "Make" OR NOT cmake_generator))
|
||||
# The project uses the same Makefile generator. Use recursive make.
|
||||
set(cmd "$(MAKE)")
|
||||
if(step STREQUAL "INSTALL")
|
||||
|
Loading…
Reference in New Issue
Block a user