cmake/Tests/RunCMake/list/GET-CMP0007-WARN.cmake

8 lines
198 B
CMake
Raw Normal View History

2015-11-17 17:22:37 +01:00
cmake_policy(VERSION 2.4)
2013-03-16 19:13:01 +02:00
set(thelist "" NEW OLD)
list(GET thelist 1 thevalue)
if (NOT thevalue STREQUAL "OLD")
message(SEND_ERROR "returned element '${thevalue}', but expected 'OLD'")
endif()