mirror of
				https://github.com/neovim/neovim.git
				synced 2025-10-26 12:27:24 +00:00 
			
		
		
		
	 036f86feac
			
		
	
	036f86feac
	
	
	
		
			
			This will immensely reduce the complexity required to support both architectures, reduce overall lines of code and unblock follow-up simplifications.
		
			
				
	
	
		
			19 lines
		
	
	
		
			839 B
		
	
	
	
		
			CMake
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			839 B
		
	
	
	
		
			CMake
		
	
	
	
	
	
| if(MSVC)
 | |
|   get_externalproject_options(gettext ${DEPS_IGNORE_SHA})
 | |
|   ExternalProject_Add(gettext
 | |
|     DOWNLOAD_DIR ${DEPS_DOWNLOAD_DIR}/gettext
 | |
|     PATCH_COMMAND ${CMAKE_COMMAND} -E copy
 | |
|       ${CMAKE_CURRENT_SOURCE_DIR}/cmake/GettextCMakeLists.txt
 | |
|       ${DEPS_BUILD_DIR}/src/gettext/CMakeLists.txt
 | |
|     CMAKE_ARGS ${DEPS_CMAKE_ARGS}
 | |
|       -D LIBICONV_INCLUDE_DIRS=${DEPS_INSTALL_DIR}/include
 | |
|       -D LIBICONV_LIBRARIES=${DEPS_LIB_DIR}/${CMAKE_STATIC_LIBRARY_PREFIX}libcharset${CMAKE_STATIC_LIBRARY_SUFFIX}$<SEMICOLON>${DEPS_LIB_DIR}/${CMAKE_STATIC_LIBRARY_PREFIX}libiconv${CMAKE_STATIC_LIBRARY_SUFFIX}
 | |
|     ${EXTERNALPROJECT_OPTIONS})
 | |
| else()
 | |
|   message(FATAL_ERROR "Trying to build gettext in an unsupported system ${CMAKE_SYSTEM_NAME}/${CMAKE_C_COMPILER_ID}")
 | |
| endif()
 | |
| 
 | |
| if(USE_BUNDLED_LIBICONV)
 | |
|   add_dependencies(gettext libiconv)
 | |
| endif()
 |