copydir.cmake.in 370 B

12345678910
  1. # Distributed under the OSI-approved BSD 3-Clause License. See accompanying
  2. # file Copyright.txt or https://cmake.org/licensing for details.
  3. cmake_minimum_required(VERSION 3.5)
  4. file(REMOVE_RECURSE "@to_dir@")
  5. # Copy the _contents_ of the source dir into the destination dir, hence the
  6. # trailing slash on the from_dir
  7. file(COPY "@from_dir@/" DESTINATION "@to_dir@")