mirror of
https://github.com/avast/retdec.git
synced 2024-12-01 00:30:29 +00:00
11 lines
267 B
CMake
11 lines
267 B
CMake
|
|
install (CODE "
|
|
execute_process(
|
|
COMMAND sh \"${CMAKE_SOURCE_DIR}/cmake/install-share.sh\" \"${CMAKE_INSTALL_PREFIX}\"
|
|
RESULT_VARIABLE INSTALL_SHARE_RES
|
|
)
|
|
if(INSTALL_SHARE_RES)
|
|
message(FATAL_ERROR \"RetDec share directory installation FAILED\")
|
|
endif()
|
|
")
|