mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-08 23:00:07 -06:00
7 lines
213 B
CMake
7 lines
213 B
CMake
if(NOT EXISTS "${Data}")
|
|
message(SEND_ERROR "Input file:\n ${Data}\n" "does not exist!")
|
|
endif()
|
|
if(IS_SYMLINK "${Data}")
|
|
message(SEND_ERROR "Input file:\n ${Data}\nis a symlink but should not be!")
|
|
endif()
|