cmake/Tests/GeneratorExpression/check-common.cmake

6 lines
154 B
CMake
Raw Normal View History

2015-11-17 17:22:37 +01:00
function(check var val)
2013-03-16 19:13:01 +02:00
if(NOT "${${var}}" STREQUAL "${val}")
message(SEND_ERROR "${var} is \"${${var}}\", not \"${val}\"")
endif()
2015-11-17 17:22:37 +01:00
endfunction()