DataNoSymlinksCheck.cmake 210 B

123456
  1. if(NOT EXISTS "${Data}")
  2. message(SEND_ERROR "Input file:\n ${Data}\ndoes not exist!")
  3. endif()
  4. if(IS_SYMLINK "${Data}")
  5. message(SEND_ERROR "Input file:\n ${Data}\nis a symlink but should not be!")
  6. endif()