mirror of
				https://github.com/neovim/neovim.git
				synced 2025-11-04 01:34:25 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			19 lines
		
	
	
		
			451 B
		
	
	
	
		
			CMake
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			451 B
		
	
	
	
		
			CMake
		
	
	
	
	
	
# - Try to find iconv
 | 
						|
# Once done, this will define
 | 
						|
#
 | 
						|
#  Iconv_FOUND        - system has iconv
 | 
						|
#  Iconv_INCLUDE_DIRS - the iconv include directories
 | 
						|
#  Iconv_LIBRARIES    - link these to use iconv
 | 
						|
 | 
						|
include(LibFindMacros)
 | 
						|
 | 
						|
find_path(ICONV_INCLUDE_DIR NAMES iconv.h)
 | 
						|
find_library(ICONV_LIBRARY NAMES iconv libiconv)
 | 
						|
 | 
						|
set(Iconv_PROCESS_INCLUDES ICONV_INCLUDE_DIR)
 | 
						|
if(ICONV_LIBRARY)
 | 
						|
  set(Iconv_PROCESS_LIBS ICONV_LIBRARY)
 | 
						|
endif()
 | 
						|
 | 
						|
libfind_process(Iconv)
 |