mirror of
https://gitlab.kitware.com/cmake/cmake.git
synced 2026-09-25 04:09:36 +03:00
This adds message(WARNING) and message(AUTHOR_WARNING) command modes and fully documents the command behavior in all modes.
5 lines
136 B
CMake
5 lines
136 B
CMake
message("message-default")
|
|
message(STATUS "message-status")
|
|
message(WARNING "message-warning")
|
|
message(AUTHOR_WARNING "message-author")
|