mirror of
https://github.com/Llewellynvdm/conky.git
synced 2025-01-16 12:10:31 +00:00
6bf383cf78
* Introduce geometry primitives based on Vc * Apply geometry primitives to some existing code Signed-off-by: Tin Švagelj <tin.svagelj@live.com>
10 lines
238 B
CMake
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()
|