diff options
author | Brad King <brad.king@kitware.com> | 2020-01-31 15:04:13 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2020-01-31 15:04:41 (GMT) |
commit | 2ed00e8ef831d08a66492b41764d84e6afb43b7f (patch) | |
tree | b52dc7c1c34464a63ec30e9e59e9a245f9a22b3e /Source/CPack | |
parent | 7bf187499f9678c3493d5e6960c6ccabb6604c8d (diff) | |
download | CMake-2ed00e8ef831d08a66492b41764d84e6afb43b7f.zip CMake-2ed00e8ef831d08a66492b41764d84e6afb43b7f.tar.gz CMake-2ed00e8ef831d08a66492b41764d84e6afb43b7f.tar.bz2 |
CPack: Deprecate OSXX11 generator
The CPack OSXX11 generator has not had any updates since 2011 except as
part of sweeping maintenance changes. It also creates packages with a
OSXScriptLauncher binary that has only ppc and i386 architectures which
are not supported by Apple anymore. Furthermore, the generator is not
even mentioned in our documentation. Add a deprecation warning.
Fixes: #20235
Diffstat (limited to 'Source/CPack')
-rw-r--r-- | Source/CPack/cmCPackOSXX11Generator.cxx | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Source/CPack/cmCPackOSXX11Generator.cxx b/Source/CPack/cmCPackOSXX11Generator.cxx index 951c65f..5de4a6f 100644 --- a/Source/CPack/cmCPackOSXX11Generator.cxx +++ b/Source/CPack/cmCPackOSXX11Generator.cxx @@ -178,6 +178,9 @@ int cmCPackOSXX11Generator::PackageFiles() int cmCPackOSXX11Generator::InitializeInternal() { + cmCPackLogger(cmCPackLog::LOG_WARNING, + "The OSXX11 generator is deprecated " + "and will be removed in a future version.\n"); cmCPackLogger(cmCPackLog::LOG_DEBUG, "cmCPackOSXX11Generator::Initialize()" << std::endl); std::vector<std::string> path; |