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.
13 lines
520 B
13 lines
520 B
set(oldname "${CMAKE_CURRENT_BINARY_DIR}/input")
|
|
set(newname "${CMAKE_CURRENT_BINARY_DIR}/output")
|
|
file(WRITE "${oldname}" "")
|
|
execute_process(COMMAND "${CMAKE_COMMAND} -E sleep 1")
|
|
file(WRITE "${newname}" "")
|
|
file(TIMESTAMP "${newname}" before_copy UTC)
|
|
file(COPY_FILE "${oldname}" "${newname}" RESULT result ONLY_IF_DIFFERENT)
|
|
file(TIMESTAMP "${newname}" after_copy UTC)
|
|
if (NOT before_copy STREQUAL after_copy)
|
|
message(FATAL_ERROR
|
|
"${newname} was modified even though ONLY_IF_DIFFERENT was specified")
|
|
endif ()
|