mirror of
				https://github.com/neovim/neovim.git
				synced 2025-10-26 12:27:24 +00:00 
			
		
		
		
	 6e3a69b4cf
			
		
	
	6e3a69b4cf
	
	
	
		
			
			Change the default build type to always be Debug, and allow only four predefined build types: Debug, Release, RelWithDebInfo and MinRelSize. Furthermore, flags meant for single-configuration generator (make, ninja) will not be used for multi-configuration generators (visual studio, Xcode), and flags meant for multi-configuration generators will not be used for single-configuration generators. This will allow Debug builds to be built with MSVC which requires that all dependencies are also built with the Debug build type to avoid runtime library mismatch. The correct way to specify build type (for example Release) for single-configuration generators (Make and Ninja) is to run cmake -B build -D CMAKE_BUILD_TYPE=Release cmake --build build while for multi-configuration generators (Visual Studio, Xcode and Ninja Multi-Config) is to run cmake -B build cmake --build build --config Release Passing CMAKE_BUILD_TYPE for multi-config generators will now not only not be used, but also generate a warning for the user. Co-authored-by: dundargoc <gocundar@gmail.com>
		
			
				
	
	
		
			31 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			CMake
		
	
	
	
	
	
			
		
		
	
	
			31 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			CMake
		
	
	
	
	
	
| if(MSVC)
 | |
|   ExternalProject_Add(libiconv
 | |
|     PREFIX ${DEPS_BUILD_DIR}
 | |
|     URL ${LIBICONV_URL}
 | |
|     DOWNLOAD_DIR ${DEPS_DOWNLOAD_DIR}/libiconv
 | |
|     DOWNLOAD_COMMAND ${CMAKE_COMMAND}
 | |
|       -DPREFIX=${DEPS_BUILD_DIR}
 | |
|       -DDOWNLOAD_DIR=${DEPS_DOWNLOAD_DIR}/libiconv
 | |
|       -DURL=${LIBICONV_URL}
 | |
|       -DEXPECTED_SHA256=${LIBICONV_SHA256}
 | |
|       -DTARGET=libiconv
 | |
|       -DUSE_EXISTING_SRC_DIR=${USE_EXISTING_SRC_DIR}
 | |
|       -P ${CMAKE_CURRENT_SOURCE_DIR}/cmake/DownloadAndExtractFile.cmake
 | |
|     CONFIGURE_COMMAND ${CMAKE_COMMAND} -E copy
 | |
|       ${CMAKE_CURRENT_SOURCE_DIR}/cmake/LibiconvCMakeLists.txt
 | |
|         ${DEPS_BUILD_DIR}/src/libiconv/CMakeLists.txt
 | |
|       COMMAND ${CMAKE_COMMAND} ${DEPS_BUILD_DIR}/src/libiconv
 | |
|         -DCMAKE_INSTALL_PREFIX=${DEPS_INSTALL_DIR}
 | |
|         # Pass toolchain
 | |
|         -DCMAKE_TOOLCHAIN_FILE=${TOOLCHAIN}
 | |
|         ${BUILD_TYPE_STRING}
 | |
|         -DCMAKE_GENERATOR=${CMAKE_GENERATOR}
 | |
|         -DCMAKE_GENERATOR_PLATFORM=${CMAKE_GENERATOR_PLATFORM}
 | |
|     BUILD_COMMAND ${CMAKE_COMMAND} --build . --config $<CONFIG>
 | |
|     INSTALL_COMMAND ${CMAKE_COMMAND} --build . --target install --config $<CONFIG>)
 | |
| else()
 | |
|   message(FATAL_ERROR "Trying to build libiconv in an unsupported system ${CMAKE_SYSTEM_NAME}/${CMAKE_C_COMPILER_ID}")
 | |
| endif()
 | |
| 
 | |
| list(APPEND THIRD_PARTY_DEPS libiconv)
 |