mirror of
https://github.com/neovim/neovim
synced 2025-07-16 01:01:49 +00:00
`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.
10 lines
389 B
CMake
10 lines
389 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}
|
|
CMAKE_CACHE_ARGS ${DEPS_CMAKE_CACHE_ARGS}
|
|
${EXTERNALPROJECT_OPTIONS})
|