mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-06 05:40:54 -06:00
5 lines
140 B
CMake
5 lines
140 B
CMake
file(CREATE_LINK does_not_exist.txt TestLink.txt RESULT result)
|
|
if(NOT result STREQUAL "0")
|
|
message("Hard link error: ${result}")
|
|
endif()
|