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:
Brad King 2016-01-19 16:07:28 -05:00
parent c13ed96401
commit 5d739a3c84
1 changed files with 3 additions and 3 deletions

View File

@ -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()