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