summaryrefslogtreecommitdiffstats
path: root/Tests/RunCMake/ExternalProject/LogOutputOnFailureMerged.cmake
blob: 116448b8f7c138f05165aabd27974872dc3fc37b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
include(ExternalProject)

set(dummyOutput [[
This is some dummy output with some long lines to ensure formatting is preserved
    Including lines with leading spaces

And also blank lines
]])

ExternalProject_Add(FailsWithOutput
  SOURCE_DIR            ${CMAKE_CURRENT_LIST_DIR}
  CONFIGURE_COMMAND     ""
  BUILD_COMMAND         ${CMAKE_COMMAND} -E echo ${dummyOutput}
        COMMAND         ${CMAKE_COMMAND} -E env  # missing command, forces fail
  TEST_COMMAND          ""
  INSTALL_COMMAND       ""
  LOG_BUILD             YES
  LOG_OUTPUT_ON_FAILURE YES
  LOG_MERGED_STDOUTERR  YES
  USES_TERMINAL_BUILD   YES
)