mirror of
https://github.com/Kitware/CMake.git
synced 2026-04-27 09:29:15 -05:00
9799491c7e
Updates the parallel install to generate the install_manifest.txt file.
8 lines
296 B
CMake
8 lines
296 B
CMake
file(STRINGS ${RunCMake_TEST_BINARY_DIR}/.ninja_log lines ENCODING UTF-8)
|
|
list(FILTER lines INCLUDE REGEX ".*install.*util")
|
|
list(LENGTH lines len)
|
|
|
|
if (NOT ${len} STREQUAL ${INSTALL_COUNT})
|
|
set(RunCMake_TEST_FAILED "Wrong number of cmake -P calls to install: ${len}/${INSTALL_COUNT}")
|
|
endif()
|