mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-11 08:20:18 -06:00
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:
@@ -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()
|
||||
|
||||
Reference in New Issue
Block a user