1
0
mirror of https://github.com/Llewellynvdm/conky.git synced 2025-01-16 12:10:31 +00:00
conky/3rdparty/Vc/cmake/UserWarning.cmake
Tin Švagelj 6bf383cf78
Introduce geometry primitives (#1862)
* Introduce geometry primitives based on Vc
* Apply geometry primitives to some existing code

Signed-off-by: Tin Švagelj <tin.svagelj@live.com>
2024-05-07 20:02:47 +00:00

10 lines
238 B
CMake

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()