mirror of
https://github.com/neovim/neovim.git
synced 2025-09-08 04:18:18 +00:00

This will reduce friction as developers no longer need to provide a hash when testing out different commits. To skip the hash check, set `DEPS_IGNORE_SHA` to `TRUE` in `cmake.deps/CMakeLists.txt`.
11 lines
330 B
CMake
11 lines
330 B
CMake
get_sha(msgpack ${DEPS_IGNORE_SHA})
|
|
ExternalProject_Add(msgpack
|
|
URL ${MSGPACK_URL}
|
|
${EXTERNALPROJECT_URL_HASH}
|
|
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})
|