mirror of
https://github.com/neovim/neovim.git
synced 2025-02-25 18:55:25 -06:00
build: Do not ref libuv
CMake target if USE_BUNDLED_LIBUV=OFF. (#6363)
CMake Warning: The dependency target "libuv" of target "luv-static" does not exist. (CMP0046) Closes #6355
This commit is contained in:
parent
b60e5c85ad
commit
cf202b74db
8
third-party/cmake/BuildLuv.cmake
vendored
8
third-party/cmake/BuildLuv.cmake
vendored
@ -87,5 +87,9 @@ BuildLuv(PATCH_COMMAND ${LUV_PATCH_COMMAND}
|
||||
INSTALL_COMMAND ${LUV_INSTALL_COMMAND})
|
||||
|
||||
list(APPEND THIRD_PARTY_DEPS luv-static)
|
||||
add_dependencies(luv-static luajit)
|
||||
add_dependencies(luv-static libuv)
|
||||
if(USE_BUNDLED_LUAJIT)
|
||||
add_dependencies(luv-static luajit)
|
||||
endif()
|
||||
if(USE_BUNDLED_LIBUV)
|
||||
add_dependencies(luv-static libuv)
|
||||
endif()
|
||||
|
Loading…
Reference in New Issue
Block a user