blob: d5e5d7e81627fbb8d5ad9d999ee8d372c44a517c (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
execute_process(
COMMAND ${MAKE_PRG} install
RESULT_VARIABLE res)
if(NOT res EQUAL 0)
message(FATAL_ERROR "Installing msgpack failed.")
endif()
file(GLOB FILES_TO_REMOVE ${REMOVE_FILE_GLOB})
if(FILES_TO_REMOVE)
file(REMOVE ${FILES_TO_REMOVE})
endif()
|