GET-CMP0007-WARN.cmake 198 B

1234567
  1. cmake_policy(VERSION 2.4)
  2. set(thelist "" NEW OLD)
  3. list(GET thelist 1 thevalue)
  4. if (NOT thevalue STREQUAL "OLD")
  5. message(SEND_ERROR "returned element '${thevalue}', but expected 'OLD'")
  6. endif()