Sign in
fuchsia
/
third_party
/
github.com
/
Kitware
/
CMake
/
8b8135487f50ca34cd3500a968a8ad4c4e126e97
/
.
/
Tests
/
Module
/
ExternalData
/
DataNoSymlinks
/
DataNoSymlinksCheck.cmake
blob: a73668ae3a9313e9cf2fa06b754a93c2307ed855 [
file
] [
log
] [
blame
]
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
()