diff options
author | Brad King <brad.king@kitware.com> | 2018-04-19 12:48:28 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2018-04-19 12:48:28 (GMT) |
commit | 7e532abc78ddd44cfd2e2ee3fd54e332f7a0e84d (patch) | |
tree | 5c2038770001704a1c09dee78d7a9ae37dee841e /Utilities/Sphinx/create_identifiers.py | |
parent | c14497191bf4412b7b7f5241030f251373e4c0ae (diff) | |
download | CMake-7e532abc78ddd44cfd2e2ee3fd54e332f7a0e84d.zip CMake-7e532abc78ddd44cfd2e2ee3fd54e332f7a0e84d.tar.gz CMake-7e532abc78ddd44cfd2e2ee3fd54e332f7a0e84d.tar.bz2 |
Utilities/Sphinx: Fix QtHelp generator identifiers
Add missinge entry in `create_identifiers.py` helper.
Diffstat (limited to 'Utilities/Sphinx/create_identifiers.py')
-rwxr-xr-x | Utilities/Sphinx/create_identifiers.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Utilities/Sphinx/create_identifiers.py b/Utilities/Sphinx/create_identifiers.py index 3fe3fcb..4513434 100755 --- a/Utilities/Sphinx/create_identifiers.py +++ b/Utilities/Sphinx/create_identifiers.py @@ -22,6 +22,7 @@ for line in lines: mapping = (("command", "command"), ("variable", "variable"), + ("generator", "generator"), ("target property", "prop_tgt"), ("test property", "prop_test"), ("source file property", "prop_sf"), |