diff options
author | Brad King <brad.king@kitware.com> | 2023-02-23 22:22:46 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2023-02-24 17:25:35 (GMT) |
commit | c09b7604841448b0c949e5c98ea791c9dc9d477e (patch) | |
tree | d4c993cd999a3758e9ddbd3f0dbab7db83051624 /Utilities/Sphinx | |
parent | 6e85ad7f8bddf9347fce828bb18940c07dc603c2 (diff) | |
download | CMake-c09b7604841448b0c949e5c98ea791c9dc9d477e.zip CMake-c09b7604841448b0c949e5c98ea791c9dc9d477e.tar.gz CMake-c09b7604841448b0c949e5c98ea791c9dc9d477e.tar.bz2 |
Utilities/Sphinx: Drop commented-out code from cmake domain impl
Inspired-by: Alex Turbov <i.zaufi@gmail.com>
Diffstat (limited to 'Utilities/Sphinx')
-rw-r--r-- | Utilities/Sphinx/cmake.py | 13 |
1 files changed, 1 insertions, 12 deletions
diff --git a/Utilities/Sphinx/cmake.py b/Utilities/Sphinx/cmake.py index 47e4909..e9f0dc5 100644 --- a/Utilities/Sphinx/cmake.py +++ b/Utilities/Sphinx/cmake.py @@ -412,18 +412,7 @@ class CMakeDomain(Domain): 'envvar': CMakeObject, 'genex': CMakeObject, 'variable': CMakeObject, - # Other object types cannot be created except by the CMakeTransform - # 'generator': CMakeObject, - # 'module': CMakeObject, - # 'policy': CMakeObject, - # 'prop_cache': CMakeObject, - # 'prop_dir': CMakeObject, - # 'prop_gbl': CMakeObject, - # 'prop_inst': CMakeObject, - # 'prop_sf': CMakeObject, - # 'prop_test': CMakeObject, - # 'prop_tgt': CMakeObject, - # 'manual': CMakeObject, + # Other `object_types` cannot be created except by the `CMakeTransform` } roles = { 'command': CMakeXRefRole(fix_parens = True, lowercase = True), |