]> git.uio.no Git - u/mrichter/AliRoot.git/blob - Vc/cmake/UserWarning.cmake
comments on some sed magic
[u/mrichter/AliRoot.git] / Vc / cmake / UserWarning.cmake
1 macro(UserWarning _msg)
2    if("$ENV{DASHBOARD_TEST_FROM_CTEST}" STREQUAL "")
3       # developer (non-dashboard) build
4       message(WARNING "${_msg}")
5    else()
6       # dashboard build
7       message(STATUS "${_msg}")
8    endif()
9 endmacro()