diff options
author | Florent Castelli <florent.castelli@gmail.com> | 2017-01-14 18:05:34 +0100 |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2017-01-16 11:27:02 -0500 |
commit | cdf7e5d8661c5035e42d251d009b5ef49a11af98 (patch) | |
tree | df4ef17de809c904eea72a5819d20e63c4fb5a92 | |
parent | b3d675f1cbd60a41936b517356e657e826434555 (diff) | |
download | cmake-cdf7e5d8661c5035e42d251d009b5ef49a11af98.tar.gz |
FindICU: Add 'include' to the path suffixes
Without this FindICU doesn't recognise the installation within homebrew.
-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 36dd67eb29..5210f08068 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}) |