You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
420 B
11 lines
420 B
set(lnkname "${CMAKE_CURRENT_BINARY_DIR}/link")
|
|
set(oldname "${CMAKE_CURRENT_BINARY_DIR}/input")
|
|
set(newname "${CMAKE_CURRENT_BINARY_DIR}/output")
|
|
file(WRITE "${lnkname}" "a")
|
|
file(CREATE_LINK "${lnkname}" "${oldname}")
|
|
file(COPY_FILE "${oldname}" "${newname}")
|
|
file(READ "${newname}" new)
|
|
if(NOT "${new}" STREQUAL "a")
|
|
message(FATAL_ERROR "New name:\n ${newname}\n" "does not contain expected content 'a'.")
|
|
endif()
|