diff options
author | Bill Hoffman <bill.hoffman@kitware.com> | 2008-12-19 02:53:56 (GMT) |
---|---|---|
committer | Bill Hoffman <bill.hoffman@kitware.com> | 2008-12-19 02:53:56 (GMT) |
commit | 46feb1302c50d9031d25fc865d34c17e5e88c66f (patch) | |
tree | ea960b41aa4893a7b01789d79a2a1028db786bf7 /Modules/FindEXPAT.cmake | |
parent | 269ce52ad57262f8f763416a01bef08a5b85a395 (diff) | |
download | CMake-46feb1302c50d9031d25fc865d34c17e5e88c66f.zip CMake-46feb1302c50d9031d25fc865d34c17e5e88c66f.tar.gz CMake-46feb1302c50d9031d25fc865d34c17e5e88c66f.tar.bz2 |
BUG: fix for #8298 look for libexpat as well
Diffstat (limited to 'Modules/FindEXPAT.cmake')
-rw-r--r-- | Modules/FindEXPAT.cmake | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/FindEXPAT.cmake b/Modules/FindEXPAT.cmake index ee5b2fa..ee804e1 100644 --- a/Modules/FindEXPAT.cmake +++ b/Modules/FindEXPAT.cmake @@ -9,7 +9,7 @@ FIND_PATH(EXPAT_INCLUDE_DIR NAMES expat.h) # Look for the library. -FIND_LIBRARY(EXPAT_LIBRARY NAMES expat) +FIND_LIBRARY(EXPAT_LIBRARY NAMES expat libexpat) # handle the QUIETLY and REQUIRED arguments and set EXPAT_FOUND to TRUE if # all listed variables are TRUE |