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.
9 lines
299 B
CMake
9 lines
299 B
CMake
get_externalproject_options(msgpack ${DEPS_IGNORE_SHA})
|
|
ExternalProject_Add(msgpack
|
|
DOWNLOAD_DIR ${DEPS_DOWNLOAD_DIR}/msgpack
|
|
CMAKE_ARGS ${DEPS_CMAKE_ARGS}
|
|
-D MSGPACK_BUILD_TESTS=OFF
|
|
-D MSGPACK_BUILD_EXAMPLES=OFF
|
|
CMAKE_CACHE_ARGS ${DEPS_CMAKE_CACHE_ARGS}
|
|
${EXTERNALPROJECT_OPTIONS})
|