mirror of
https://gitlab.kitware.com/cmake/cmake.git
synced 2026-09-25 04:09:36 +03:00
6 lines
135 B
CMake
6 lines
135 B
CMake
function(write_empty_file FILENAME)
|
|
file(WRITE "${CMAKE_INSTALL_PREFIX}/${FILENAME}" "")
|
|
endfunction()
|
|
|
|
write_empty_file(empty1.txt)
|