1# Distributed under the OSI-approved BSD 3-Clause License. See accompanying 2# file Copyright.txt or https://cmake.org/licensing for details. 3 4cmake_minimum_required(VERSION ${CMAKE_VERSION}) 5 6# We name the project and the target for the ExternalProject_Add() call 7# to something that will highlight to the user what we are working on if 8# something goes wrong and an error message is produced. 9 10project(${contentName}-populate NONE) 11 12@__FETCHCONTENT_CACHED_INFO@ 13 14include(ExternalProject) 15ExternalProject_Add(${contentName}-populate 16 ${ARG_EXTRA} 17 SOURCE_DIR "${ARG_SOURCE_DIR}" 18 BINARY_DIR "${ARG_BINARY_DIR}" 19 CONFIGURE_COMMAND "" 20 BUILD_COMMAND "" 21 INSTALL_COMMAND "" 22 TEST_COMMAND "" 23 USES_TERMINAL_DOWNLOAD YES 24 USES_TERMINAL_UPDATE YES 25) 26 27@__FETCHCONTENT_COPY_FILE@ 28