diff options
author | Brad King <brad.king@kitware.com> | 2023-02-15 15:38:45 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2023-02-15 15:48:26 (GMT) |
commit | ef5a4d964ba1743fd7c343f1a6194ff82936d014 (patch) | |
tree | 3fb2f0b8cba3c32d5ee1c7b276bb710cc7227176 /Source/cmExtraEclipseCDT4Generator.cxx | |
parent | 37f068083ba53e4140e5660a82bda9708e53c356 (diff) | |
download | CMake-ef5a4d964ba1743fd7c343f1a6194ff82936d014.zip CMake-ef5a4d964ba1743fd7c343f1a6194ff82936d014.tar.gz CMake-ef5a4d964ba1743fd7c343f1a6194ff82936d014.tar.bz2 |
Deprecate "extra" generators in favor of cmake-file-api(7)
The "extra" generators were created in CMake's early years to provide
support for users of specific IDEs by directly generating their project
files alongside make or ninja files. Nowadays the file-api provides a
more generic, maintainable, well-tested, and robust way for IDEs to view
CMake project build trees. Deprecate the legacy "extra" generators to
encourage the corresponding IDEs to use the file-api.
Fixes: #19090
Diffstat (limited to 'Source/cmExtraEclipseCDT4Generator.cxx')
-rw-r--r-- | Source/cmExtraEclipseCDT4Generator.cxx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Source/cmExtraEclipseCDT4Generator.cxx b/Source/cmExtraEclipseCDT4Generator.cxx index a07acdc..6201889 100644 --- a/Source/cmExtraEclipseCDT4Generator.cxx +++ b/Source/cmExtraEclipseCDT4Generator.cxx @@ -63,7 +63,8 @@ cmExtraEclipseCDT4Generator::GetFactory() { static cmExternalMakefileProjectGeneratorSimpleFactory< cmExtraEclipseCDT4Generator> - factory("Eclipse CDT4", "Generates Eclipse CDT 4.0 project files."); + factory("Eclipse CDT4", + "Generates Eclipse CDT 4.0 project files (deprecated)."); if (factory.GetSupportedGlobalGenerators().empty()) { // TODO: Verify if __CYGWIN__ should be checked. |