mirror of
https://github.com/MariaDB/server.git
synced 2025-01-29 02:05:57 +01:00
6 lines
171 B
CMake
6 lines
171 B
CMake
FUNCTION(MESSAGE_ONCE id out)
|
|
IF(NOT __msg1_${id} STREQUAL "${out}")
|
|
MESSAGE(STATUS "${out}")
|
|
ENDIF()
|
|
SET(__msg1_${id} "${out}" CACHE INTERNAL "")
|
|
ENDFUNCTION()
|