mirror of
				https://github.com/neovim/neovim.git
				synced 2025-11-04 09:44:31 +00:00 
			
		
		
		
	utf8proc contains all the data which is currently in unicode_tables.generated.h internally, but in quite a different format. Ideally unicode_tables.generated.h should be removed as well so we rely solely on utf8proc. We want to avoid a situation where the possibility of unicode mismatch occurs, e.g a distro using both unicode 12 and unicode 13.
		
			
				
	
	
		
			6 lines
		
	
	
		
			193 B
		
	
	
	
		
			CMake
		
	
	
	
	
	
			
		
		
	
	
			6 lines
		
	
	
		
			193 B
		
	
	
	
		
			CMake
		
	
	
	
	
	
get_externalproject_options(utf8proc ${DEPS_IGNORE_SHA})
 | 
						|
ExternalProject_Add(utf8proc
 | 
						|
  DOWNLOAD_DIR ${DEPS_DOWNLOAD_DIR}/utf8proc
 | 
						|
  CMAKE_ARGS ${DEPS_CMAKE_ARGS}
 | 
						|
  ${EXTERNALPROJECT_OPTIONS})
 |