Properly display hdiutil status in CMake

This commit is contained in:
heinrich5991 2020-01-05 17:46:47 +01:00
parent f5675127f9
commit cc2be456d4

View file

@ -330,6 +330,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 "******** Teeworlds ********")