mirror of
https://github.com/Kitware/CMake.git
synced 2026-04-26 16:18:43 -05:00
9799491c7e
Updates the parallel install to generate the install_manifest.txt file.
11 lines
338 B
CMake
11 lines
338 B
CMake
if (NOT EXISTS ${INSTALL_MANIFEST})
|
|
set(RunCMake_TEST_FAILED "Install manifest not generated: ${INSTALL_MANIFEST}")
|
|
endif()
|
|
|
|
file(STRINGS ${INSTALL_MANIFEST} lines ENCODING UTF-8)
|
|
list(LENGTH lines len)
|
|
|
|
if (NOT len EQUAL ${INSTALL_COUNT})
|
|
set(RunCMake_TEST_FAILED "Install manifest missing content: ${len}/${INSTALL_COUNT}")
|
|
endif()
|