diff options
author | Florent Castelli <florent.castelli@gmail.com> | 2017-01-14 17:05:34 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2017-01-16 16:27:02 (GMT) |
commit | cdf7e5d8661c5035e42d251d009b5ef49a11af98 (patch) | |
tree | df4ef17de809c904eea72a5819d20e63c4fb5a92 /Modules/FindICU.cmake | |
parent | b3d675f1cbd60a41936b517356e657e826434555 (diff) | |
download | CMake-cdf7e5d8661c5035e42d251d009b5ef49a11af98.zip CMake-cdf7e5d8661c5035e42d251d009b5ef49a11af98.tar.gz CMake-cdf7e5d8661c5035e42d251d009b5ef49a11af98.tar.bz2 |
FindICU: Add 'include' to the path suffixes
Without this FindICU doesn't recognise the installation within homebrew.
Diffstat (limited to 'Modules/FindICU.cmake')
-rw-r--r-- | Modules/FindICU.cmake | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Modules/FindICU.cmake b/Modules/FindICU.cmake index 36dd67e..5210f08 100644 --- a/Modules/FindICU.cmake +++ b/Modules/FindICU.cmake @@ -126,6 +126,7 @@ function(_ICU_FIND) # Generic 64-bit and 32-bit directories list(APPEND icu_binary_suffixes "${_bin64}" "bin") list(APPEND icu_library_suffixes "${_lib64}" "lib") + list(APPEND icu_include_suffixes "include") # Find all ICU programs foreach(program ${icu_programs}) |