Merge topic 'fix-external-project-generator'

a704098d ExternalProject: fix the build command for generator overrides
This commit is contained in:
Brad King 2015-03-27 09:15:25 -04:00 committed by CMake Topic Stage
commit 7910cb7cfb

View File

@ -1197,7 +1197,10 @@ function(_ep_get_build_command name step cmd_var)
else()
set(cmd "${CMAKE_COMMAND}")
endif()
set(args --build ${binary_dir} --config ${CMAKE_CFG_INTDIR})
set(args --build ".")
if (CMAKE_CFG_INTDIR AND NOT CMAKE_CFG_INTDIR STREQUAL ".")
list(APPEND args --config "${CMAKE_CFG_INTDIR}")
endif ()
if(step STREQUAL "INSTALL")
list(APPEND args --target install)
endif()