iSulad/cmake/helper.cmake

10 lines
250 B
CMake
Raw Normal View History

2019-09-30 10:53:41 -04:00
# use to check result
macro(_CHECK)
if (${ARGV0} STREQUAL "${ARGV1}")
message("ERROR: can not find " ${ARGV2} " program")
set(CHECKER_RESULT 1)
else()
message("-- found " ${ARGV2} " --- works")
endif()
endmacro()