CMakeLists.cmake.in 831 B

123456789101112131415161718192021
  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 ${CMAKE_VERSION})
  4. # We name the project and the target for the ExternalProject_Add() call
  5. # to something that will highlight to the user what we are working on if
  6. # something goes wrong and an error message is produced.
  7. project(${contentName}-populate NONE)
  8. include(ExternalProject)
  9. ExternalProject_Add(${contentName}-populate
  10. ${ARG_EXTRA}
  11. SOURCE_DIR "${ARG_SOURCE_DIR}"
  12. BINARY_DIR "${ARG_BINARY_DIR}"
  13. CONFIGURE_COMMAND ""
  14. BUILD_COMMAND ""
  15. INSTALL_COMMAND ""
  16. TEST_COMMAND ""
  17. )