diff options
author | Steven Newbury <steve@snewbury.org.uk> | 2017-02-27 21:17:28 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2017-03-07 20:22:55 (GMT) |
commit | bed9c73decfcda0366984d990045e588928440ec (patch) | |
tree | 5498d64c6ff7a9092f4b7c1b41c9eb93610fa11d /Modules/FindIce.cmake | |
parent | 462cf254270fbd56bffc73b00dc28882fdb0bdd6 (diff) | |
download | CMake-bed9c73decfcda0366984d990045e588928440ec.zip CMake-bed9c73decfcda0366984d990045e588928440ec.tar.gz CMake-bed9c73decfcda0366984d990045e588928440ec.tar.bz2 |
Modules: Add x32-abi support to hard-coded paths
Update hard-coded library paths in bundled CMake Modules for libx32 as
used with x32-abi.
Diffstat (limited to 'Modules/FindIce.cmake')
-rw-r--r-- | Modules/FindIce.cmake | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/FindIce.cmake b/Modules/FindIce.cmake index a61d4a8..e0286ee 100644 --- a/Modules/FindIce.cmake +++ b/Modules/FindIce.cmake @@ -198,7 +198,7 @@ function(_Ice_FIND) endif() # Generic 64-bit and 32-bit directories list(APPEND ice_binary_suffixes "bin${_x64}" "bin") - list(APPEND ice_library_suffixes "${_lib64}" "lib${_x64}" "lib") + list(APPEND ice_library_suffixes "libx32" "${_lib64}" "lib${_x64}" "lib") list(APPEND ice_include_suffixes "include") list(APPEND ice_slice_suffixes "slice") |