1
0
mirror of https://github.com/Llewellynvdm/conky.git synced 2025-01-17 04:19:16 +00:00
conky/3rdparty/Vc/cmake/UserWarning.cmake

10 lines
238 B
CMake
Raw Normal View History

macro(UserWarning _msg)
if("$ENV{DASHBOARD_TEST_FROM_CTEST}" STREQUAL "")
# developer (non-dashboard) build
message(WARNING "${_msg}")
else()
# dashboard build
message(STATUS "${_msg}")
endif()
endmacro()