blob: eda77f3b8487bdaf11d5a2fc4e548c33be2cd097 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
execute_process(
COMMAND ${CMAKE_COMMAND} --build . --target 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()
|