mirror of
				https://github.com/neovim/neovim.git
				synced 2025-11-04 01:34:25 +00:00 
			
		
		
		
	This will immensely reduce the complexity required to support both architectures, reduce overall lines of code and unblock follow-up simplifications.
		
			
				
	
	
		
			10 lines
		
	
	
		
			293 B
		
	
	
	
		
			CMake
		
	
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			293 B
		
	
	
	
		
			CMake
		
	
	
	
	
	
get_externalproject_options(libuv ${DEPS_IGNORE_SHA})
 | 
						|
ExternalProject_Add(libuv
 | 
						|
  DOWNLOAD_DIR ${DEPS_DOWNLOAD_DIR}/libuv
 | 
						|
  CMAKE_ARGS ${DEPS_CMAKE_ARGS}
 | 
						|
    -D CMAKE_INSTALL_LIBDIR=lib
 | 
						|
    -D BUILD_TESTING=OFF
 | 
						|
    -D LIBUV_BUILD_SHARED=OFF
 | 
						|
    -D UV_LINT_W4=OFF
 | 
						|
  ${EXTERNALPROJECT_OPTIONS})
 |