mirror of
https://github.com/neovim/neovim.git
synced 2024-12-20 03:05:11 -07:00
187ae67735
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`.
13 lines
366 B
CMake
13 lines
366 B
CMake
get_sha(libuv ${DEPS_IGNORE_SHA})
|
|
ExternalProject_Add(libuv
|
|
URL ${LIBUV_URL}
|
|
${EXTERNALPROJECT_URL_HASH}
|
|
DOWNLOAD_DIR ${DEPS_DOWNLOAD_DIR}/libuv
|
|
CMAKE_ARGS ${DEPS_CMAKE_ARGS}
|
|
-D CMAKE_INSTALL_LIBDIR=lib
|
|
-D BUILD_TESTING=OFF
|
|
-D LIBUV_BUILD_SHARED=OFF
|
|
-D UV_LINT_W4=OFF
|
|
CMAKE_CACHE_ARGS ${DEPS_CMAKE_CACHE_ARGS}
|
|
${EXTERNALPROJECT_OPTIONS})
|