summaryrefslogtreecommitdiffstats
path: root/Modules/ExternalProject/copydir.cmake.in
blob: 5dd3891c3fe6d3c35ff4ad28b78fbbef7e8e3e6e (plain)
1
2
3
4
5
6
7
8
9
10
# Distributed under the OSI-approved BSD 3-Clause License.  See accompanying
# file Copyright.txt or https://cmake.org/licensing for details.

cmake_minimum_required(VERSION 3.5)

file(REMOVE_RECURSE "@to_dir@")

# Copy the _contents_ of the source dir into the destination dir, hence the
# trailing slash on the from_dir
file(COPY "@from_dir@/" DESTINATION "@to_dir@")