summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDimitri van Heesch <doxygen@gmail.com>2020-04-27 12:13:40 (GMT)
committerDimitri van Heesch <doxygen@gmail.com>2020-04-27 12:13:40 (GMT)
commit0937faf2d168b64f5ccf55c1976bc045d5d12569 (patch)
tree8a63857cbcdea10c6f0fb6f9ce19c197a2144631
parentd41c5e67244ec9684858201f6d31568f628aa5e1 (diff)
downloadDoxygen-0937faf2d168b64f5ccf55c1976bc045d5d12569.zip
Doxygen-0937faf2d168b64f5ccf55c1976bc045d5d12569.tar.gz
Doxygen-0937faf2d168b64f5ccf55c1976bc045d5d12569.tar.bz2
Fix cmake warning about ICONV package naming (should be Iconv)
-rw-r--r--cmake/FindIconv.cmake2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmake/FindIconv.cmake b/cmake/FindIconv.cmake
index a30f1fd..a77e3a1 100644
--- a/cmake/FindIconv.cmake
+++ b/cmake/FindIconv.cmake
@@ -84,7 +84,7 @@ check_cxx_source_compiles(
ICONV_COMPILES)
include(FindPackageHandleStandardArgs)
-find_package_handle_standard_args(ICONV DEFAULT_MSG ICONV_TEST ICONV_INCLUDE_DIR ICONV_COMPILES)
+find_package_handle_standard_args(Iconv DEFAULT_MSG ICONV_TEST ICONV_INCLUDE_DIR ICONV_COMPILES)
if(ICONV_FOUND)
set(ICONV_LIBRARIES ${ICONV_LIBRARY})