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.
		
			
				
	
	
		
			15 lines
		
	
	
		
			480 B
		
	
	
	
		
			CMake
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			480 B
		
	
	
	
		
			CMake
		
	
	
	
	
	
get_externalproject_options(lpeg ${DEPS_IGNORE_SHA})
 | 
						|
ExternalProject_Add(lpeg
 | 
						|
  DOWNLOAD_DIR ${DEPS_DOWNLOAD_DIR}/lpeg
 | 
						|
  PATCH_COMMAND ${CMAKE_COMMAND} -E copy
 | 
						|
    ${CMAKE_CURRENT_SOURCE_DIR}/cmake/LpegCMakeLists.txt
 | 
						|
    ${DEPS_BUILD_DIR}/src/lpeg/CMakeLists.txt
 | 
						|
  CMAKE_ARGS ${DEPS_CMAKE_ARGS} -DCMAKE_C_FLAGS=${DEPS_INCLUDE_FLAGS}
 | 
						|
  ${EXTERNALPROJECT_OPTIONS})
 | 
						|
 | 
						|
if(USE_BUNDLED_LUAJIT)
 | 
						|
  add_dependencies(lpeg luajit)
 | 
						|
elseif(USE_BUNDLED_LUA)
 | 
						|
  add_dependencies(lpeg lua)
 | 
						|
endif()
 |