diff options
author | Brad King <brad.king@kitware.com> | 2020-11-03 12:32:13 (GMT) |
---|---|---|
committer | Kitware Robot <kwrobot@kitware.com> | 2020-11-03 12:32:20 (GMT) |
commit | 622ac065d2abeb53de3548b7e4f3d9b5980dfa8d (patch) | |
tree | d7e9731a83bf0732ce01d06945ab909b2591997b | |
parent | eea24ca5515075f8df5790a634a82530c0a9ec21 (diff) | |
parent | ec233381875f024a38d5b8bec78a892fb249380f (diff) | |
download | CMake-622ac065d2abeb53de3548b7e4f3d9b5980dfa8d.zip CMake-622ac065d2abeb53de3548b7e4f3d9b5980dfa8d.tar.gz CMake-622ac065d2abeb53de3548b7e4f3d9b5980dfa8d.tar.bz2 |
Merge topic '19128_ICU_case_consistency'
ec23338187 FindICU: Improve case consistency in documentation
Acked-by: Kitware Robot <kwrobot@kitware.com>
Merge-request: !5452
-rw-r--r-- | Modules/FindICU.cmake | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/Modules/FindICU.cmake b/Modules/FindICU.cmake index c8b3e1f..d3e5380 100644 --- a/Modules/FindICU.cmake +++ b/Modules/FindICU.cmake @@ -31,7 +31,7 @@ Imported targets:: ICU::<C> Where ``<C>`` is the name of an ICU component, for example -``ICU::i18n``. +``ICU::i18n``; ``<C>`` is lower-case. ICU programs are reported in:: @@ -54,16 +54,14 @@ ICU programs are reported in:: ICU component libraries are reported in:: - ICU_<C>_FOUND - ON if component was found - ICU_<C>_LIBRARIES - libraries for component + ICU_<C>_FOUND - ON if component was found; ``<C>`` is upper-case. + ICU_<C>_LIBRARIES - libraries for component; ``<C>`` is upper-case. ICU datafiles are reported in:: ICU_MAKEFILE_INC - Makefile.inc ICU_PKGDATA_INC - pkgdata.inc -Note that ``<C>`` is the uppercased name of the component. - This module reads hints about search results from:: ICU_ROOT - the root of the ICU installation @@ -73,9 +71,9 @@ ICU_ROOT variable takes precedence. The following cache variables may also be set:: - ICU_<P>_EXECUTABLE - the path to executable <P> + ICU_<P>_EXECUTABLE - the path to executable <P>; ``<P>`` is upper-case. ICU_INCLUDE_DIR - the directory containing the ICU headers - ICU_<C>_LIBRARY - the library for component <C> + ICU_<C>_LIBRARY - the library for component <C>; ``<C>`` is upper-case. .. note:: |