mirror of
https://github.com/neovim/neovim.git
synced 2025-09-06 03:18:16 +00:00
third-party: fix warning with (un)bundled libtermkey/unibilium (#10416)
Fixes warning with: > cmake -S third-party -B .deps -DUSE_BUNDLED=OFF -DUSE_BUNDLED_UNIBILIUM=0 -DUSE_BUNDLED_LIBTERMKEY=1 > The dependency target "unibilium" of target "libtermkey" does not exist.
This commit is contained in:
3
third-party/CMakeLists.txt
vendored
3
third-party/CMakeLists.txt
vendored
@@ -191,6 +191,9 @@ endif()
|
||||
|
||||
if(USE_BUNDLED_LIBTERMKEY)
|
||||
include(BuildLibtermkey)
|
||||
if(USE_BUNDLED_UNIBILIUM)
|
||||
add_dependencies(libtermkey unibilium)
|
||||
endif()
|
||||
endif()
|
||||
|
||||
if(USE_BUNDLED_LIBVTERM)
|
||||
|
1
third-party/cmake/BuildLibtermkey.cmake
vendored
1
third-party/cmake/BuildLibtermkey.cmake
vendored
@@ -53,4 +53,3 @@ ExternalProject_Add(libtermkey
|
||||
endif()
|
||||
|
||||
list(APPEND THIRD_PARTY_DEPS libtermkey)
|
||||
add_dependencies(libtermkey unibilium)
|
||||
|
Reference in New Issue
Block a user