mirror of
https://github.com/neovim/neovim.git
synced 2024-12-25 05:35:10 -07:00
5ffd3d035d
Previously, all targets were connected in one main target called third-party in order to remove any potentially conflicting shared library. We can make each dependency target independent of each other by only removing shared libraries from luajit and msgpack in their own targets, as only these has unwanted shared libraries.
14 lines
365 B
CMake
14 lines
365 B
CMake
if(USE_EXISTING_SRC_DIR)
|
|
unset(LIBUV_URL)
|
|
endif()
|
|
ExternalProject_Add(libuv
|
|
URL ${LIBUV_URL}
|
|
URL_HASH SHA256=${LIBUV_SHA256}
|
|
DOWNLOAD_NO_PROGRESS TRUE
|
|
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
|
|
CMAKE_CACHE_ARGS ${DEPS_CMAKE_CACHE_ARGS})
|