diff options
author | Kyle Edwards <kyle.edwards@kitware.com> | 2018-10-03 13:36:58 (GMT) |
---|---|---|
committer | Kyle Edwards <kyle.edwards@kitware.com> | 2018-10-10 14:56:00 (GMT) |
commit | 0d988f98e531333b32d0f1628acf86f8baa22241 (patch) | |
tree | 882f2cb255dc0947d3e199169405c568e021db5e /Modules/BundleUtilities.cmake | |
parent | f9f96598df3164cf12b6da7764bc74361e3fa414 (diff) | |
download | CMake-0d988f98e531333b32d0f1628acf86f8baa22241.zip CMake-0d988f98e531333b32d0f1628acf86f8baa22241.tar.gz CMake-0d988f98e531333b32d0f1628acf86f8baa22241.tar.bz2 |
cmake_policy: Add undocumented GET_WARNING command
This command is intended for modules that issue policy warnings so
they can get the warning string from CMake in a uniform manner,
rather than duplicating the string. Several modules been updated
to include an example of the usage of this new command.
Diffstat (limited to 'Modules/BundleUtilities.cmake')
-rw-r--r-- | Modules/BundleUtilities.cmake | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/Modules/BundleUtilities.cmake b/Modules/BundleUtilities.cmake index 31db25a..a7e80e7 100644 --- a/Modules/BundleUtilities.cmake +++ b/Modules/BundleUtilities.cmake @@ -230,11 +230,8 @@ if(DEFINED CMAKE_GENERATOR) if(_BundleUtilities_CMP0080 STREQUAL "NEW") message(FATAL_ERROR "BundleUtilities cannot be included at configure time!") elseif(NOT _BundleUtilities_CMP0080 STREQUAL "OLD") - message(AUTHOR_WARNING - "Policy CMP0080 is not set: BundleUtilities prefers not to be included at configure time. " - "Run \"cmake --help-policy CMP0080\" for policy details. " - "Use the cmake_policy command to set the policy and suppress this warning." - ) + cmake_policy(GET_WARNING CMP0080 _cmp0080_warning) + message(AUTHOR_WARNING "${_cmp0080_warning}\n") endif() endif() |