mirror of
				https://github.com/neovim/neovim.git
				synced 2025-11-04 09:44:31 +00:00 
			
		
		
		
	This will immensely reduce the complexity required to support both architectures, reduce overall lines of code and unblock follow-up simplifications.
		
			
				
	
	
		
			9 lines
		
	
	
		
			345 B
		
	
	
	
		
			CMake
		
	
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
		
			345 B
		
	
	
	
		
			CMake
		
	
	
	
	
	
get_externalproject_options(libvterm ${DEPS_IGNORE_SHA})
 | 
						|
ExternalProject_Add(libvterm
 | 
						|
  DOWNLOAD_DIR ${DEPS_DOWNLOAD_DIR}/libvterm
 | 
						|
  PATCH_COMMAND ${CMAKE_COMMAND} -E copy
 | 
						|
    ${CMAKE_CURRENT_SOURCE_DIR}/cmake/LibvtermCMakeLists.txt
 | 
						|
    ${DEPS_BUILD_DIR}/src/libvterm/CMakeLists.txt
 | 
						|
  CMAKE_ARGS ${DEPS_CMAKE_ARGS}
 | 
						|
  ${EXTERNALPROJECT_OPTIONS})
 |