From 9344a40e741557948215dfeb4ae32b7c0d6d7b6b Mon Sep 17 00:00:00 2001 From: John Szakmeister Date: Sat, 8 Nov 2014 16:18:04 -0500 Subject: build: pull iconv detection into its own FindIconv.cmake file This will provide better control for those who may want to alter which one gets used. --- src/nvim/CMakeLists.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/nvim/CMakeLists.txt b/src/nvim/CMakeLists.txt index 5b97cf5f40..4e0819cc0e 100644 --- a/src/nvim/CMakeLists.txt +++ b/src/nvim/CMakeLists.txt @@ -158,8 +158,8 @@ else() endif() endif() -if(HAVE_ICONV_LIB) - list(APPEND NVIM_LINK_LIBRARIES iconv) +if(Iconv_LIBRARIES) + list(APPEND NVIM_LINK_LIBRARIES ${Iconv_LIBRARIES}) endif() # Put these last on the link line, since multiple things may depend on them. -- cgit