mirror of
https://github.com/Kitware/CMake.git
synced 2026-05-08 07:10:12 -05:00
6 lines
200 B
CMake
6 lines
200 B
CMake
set(oldname "${CMAKE_CURRENT_BINARY_DIR}/input")
|
|
set(newname "${CMAKE_CURRENT_BINARY_DIR}/output")
|
|
file(WRITE "${oldname}" "")
|
|
file(MAKE_DIRECTORY "${newname}")
|
|
file(RENAME "${oldname}" "${newname}")
|