diff options
author | Christian Ehrlicher <ch.ehrlicher@gmx.de> | 2009-01-25 17:52:10 +0000 |
---|---|---|
committer | Christian Ehrlicher <ch.ehrlicher@gmx.de> | 2009-01-25 17:52:10 +0000 |
commit | fb5942b5076c3af75c54d3775e6a9919cde4f638 (patch) | |
tree | 7142c5a992ef7e51a49c8c2708d85ab94b61a162 | |
parent | 7ed5a384a96fd548d657fb7cc02fbdccb3fbe6e0 (diff) | |
download | extra-cmake-modules-fb5942b5076c3af75c54d3775e6a9919cde4f638.tar.gz extra-cmake-modules-fb5942b5076c3af75c54d3775e6a9919cde4f638.tar.bz2 |
it's libgmp on windows
svn path=/branches/KDE/4.2/kdelibs/; revision=916641
-rw-r--r-- | modules/FindGMP.cmake | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/FindGMP.cmake b/modules/FindGMP.cmake index 67ccbbb1..17d175c6 100644 --- a/modules/FindGMP.cmake +++ b/modules/FindGMP.cmake @@ -15,7 +15,7 @@ if (GMP_INCLUDE_DIR AND GMP_LIBRARIES) endif (GMP_INCLUDE_DIR AND GMP_LIBRARIES) find_path(GMP_INCLUDE_DIR NAMES gmp.h ) -find_library(GMP_LIBRARIES NAMES gmp ) +find_library(GMP_LIBRARIES NAMES gmp libgmp) include(FindPackageHandleStandardArgs) FIND_PACKAGE_HANDLE_STANDARD_ARGS(GMP DEFAULT_MSG GMP_INCLUDE_DIR GMP_LIBRARIES) |