summaryrefslogtreecommitdiff
path: root/cmake/misc.cmake
blob: c87fc41e8e314a25f9fc42ce4d4287abd7e0e714 (plain)
1
2
3
4
5
6
FUNCTION(MESSAGE_ONCE id out)
  IF(NOT __msg1_${id} STREQUAL "${out}")
    MESSAGE(STATUS "${out}")
  ENDIF()
  SET(__msg1_${id} "${out}" CACHE INTERNAL "")
ENDFUNCTION()