ExternalProject: Simplify `cmake --build` configuration passing
Check CMAKE_CONFIGURATION_TYPES instead of CMAKE_CFG_INTDIR in order to recognize multi-config generators. Then use $<CONFIG> to pass the configuration value.
This commit is contained in:
parent
c13ed96401
commit
5d739a3c84
|
@ -1230,9 +1230,9 @@ function(_ep_get_build_command name step cmd_var)
|
|||
set(cmd "${CMAKE_COMMAND}")
|
||||
endif()
|
||||
set(args --build ".")
|
||||
if (CMAKE_CFG_INTDIR AND NOT CMAKE_CFG_INTDIR STREQUAL ".")
|
||||
list(APPEND args --config "${CMAKE_CFG_INTDIR}")
|
||||
endif ()
|
||||
if(CMAKE_CONFIGURATION_TYPES)
|
||||
list(APPEND args --config $<CONFIG>)
|
||||
endif()
|
||||
if(step STREQUAL "INSTALL")
|
||||
list(APPEND args --target install)
|
||||
endif()
|
||||
|
|
Loading…
Reference in New Issue