Sign in
chromium
/
external
/
github.com
/
Kitware
/
CMake
/
master
/
.
/
Tests
/
RunCMake
/
if
/
IsDirectory.cmake
blob: 23d126dd46632ab8e1acf6e932315a79ff882858 [
file
]
if
(
IS_DIRECTORY
"${CMAKE_CURRENT_SOURCE_DIR}/"
)
message
(
STATUS
"CMAKE_CURRENT_SOURCE_DIR exists, tested with trailing slash"
)
else
()
message
(
FATAL_ERROR
"CMAKE_CURRENT_SOURCE_DIR does not exist!"
)
endif
()