blob: 8931eb53a8454278edf7e49785676a5234da790d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
set(file "${CMAKE_CURRENT_BINARY_DIR}/file-to-touch")
file(REMOVE "${file}")
file(TOUCH_NOCREATE "${file}")
if(EXISTS "${file}")
message(FATAL_ERROR "error: TOUCH_NOCREATE created a file!")
endif()
file(TOUCH "${file}")
if(NOT EXISTS "${file}")
message(FATAL_ERROR "error: TOUCH did not create a file!")
endif()
file(REMOVE "${file}")
file(TOUCH)
file(TOUCH_NOCREATE)
|