Properly display hdiutil status in CMake

(cherry picked from commit cc2be456d4)
This commit is contained in:
heinrich5991 2020-01-05 17:46:47 +01:00
parent 77957c00b9
commit 2fa80d0a67

View file

@ -334,6 +334,11 @@ if(TARGET_OS AND TARGET_OS STREQUAL "mac")
endif()
find_program(HDIUTIL hdiutil)
if(HDIUTIL)
set(HDIUTIL_FOUND ON)
else()
set(HDIUTIL_FOUND OFF)
endif()
endif()
message(STATUS "******** DDNet ********")