mirror of
https://github.com/neovim/neovim
synced 2025-07-16 01:01:49 +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`.
9 lines
273 B
CMake
9 lines
273 B
CMake
get_sha(unibilium ${DEPS_IGNORE_SHA})
|
|
ExternalProject_Add(unibilium
|
|
URL ${UNIBILIUM_URL}
|
|
${EXTERNALPROJECT_URL_HASH}
|
|
DOWNLOAD_DIR ${DEPS_DOWNLOAD_DIR}/unibilium
|
|
CMAKE_ARGS ${DEPS_CMAKE_ARGS}
|
|
CMAKE_CACHE_ARGS ${DEPS_CMAKE_CACHE_ARGS}
|
|
${EXTERNALPROJECT_OPTIONS})
|