You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

10 lines
297B

  1. string(TOLOWER "${CMAKE_INSTALL_PREFIX}" _PREFIX)
  2. string(TOLOWER "${ITK_BINARY_DIR}" _BUILD)
  3. if("${_PREFIX}" STREQUAL "${_BUILD}")
  4. message(FATAL_ERROR
  5. "The current CMAKE_INSTALL_PREFIX points at the build tree:\n"
  6. " ${CMAKE_INSTALL_PREFIX}\n"
  7. "This is not supported."
  8. )
  9. endif()