mirror of
https://github.com/neovim/neovim.git
synced 2024-12-20 03:05:11 -07:00
2c1e8f7e96
`GIT_REPOSITORY` will cause cmake to rebuild if local dependency changes, which isn't the case for `URL`. Also document how to test a different commits of a dependency.
14 lines
550 B
CMake
14 lines
550 B
CMake
if(MSVC)
|
|
get_externalproject_options(libiconv ${DEPS_IGNORE_SHA})
|
|
ExternalProject_Add(libiconv
|
|
DOWNLOAD_DIR ${DEPS_DOWNLOAD_DIR}/libiconv
|
|
PATCH_COMMAND ${CMAKE_COMMAND} -E copy
|
|
${CMAKE_CURRENT_SOURCE_DIR}/cmake/LibiconvCMakeLists.txt
|
|
${DEPS_BUILD_DIR}/src/libiconv/CMakeLists.txt
|
|
CMAKE_ARGS ${DEPS_CMAKE_ARGS}
|
|
CMAKE_CACHE_ARGS ${DEPS_CMAKE_CACHE_ARGS}
|
|
${EXTERNALPROJECT_OPTIONS})
|
|
else()
|
|
message(FATAL_ERROR "Trying to build libiconv in an unsupported system ${CMAKE_SYSTEM_NAME}/${CMAKE_C_COMPILER_ID}")
|
|
endif()
|