CMakeImportBuildSettings.cmake 535 B

12345678910111213
  1. # Distributed under the OSI-approved BSD 3-Clause License. See accompanying
  2. # file Copyright.txt or https://cmake.org/licensing for details.
  3. # This module is purposely no longer documented. It does nothing useful.
  4. # This macro used to load build settings from another project that
  5. # stored settings using the CMAKE_EXPORT_BUILD_SETTINGS macro.
  6. macro(CMAKE_IMPORT_BUILD_SETTINGS SETTINGS_FILE)
  7. if("${SETTINGS_FILE}" STREQUAL "")
  8. message(SEND_ERROR "CMAKE_IMPORT_BUILD_SETTINGS called with no argument.")
  9. endif()
  10. endmacro()