diff options
author | dundargoc <gocdundar@gmail.com> | 2023-11-01 22:33:02 +0100 |
---|---|---|
committer | Gregory Anders <greg@gpanders.com> | 2023-11-30 12:02:10 -0600 |
commit | 404043e74c523bff049558685bd88213cc71ed7a (patch) | |
tree | fa51f2759176b53a80fc258c8bd9ece3f82ee1f4 /cmake.deps/CMakeLists.txt | |
parent | 7feed6ccb7ddfa3bc789158a3b7874d12652e9c5 (diff) | |
download | rneovim-404043e74c523bff049558685bd88213cc71ed7a.tar.gz rneovim-404043e74c523bff049558685bd88213cc71ed7a.tar.bz2 rneovim-404043e74c523bff049558685bd88213cc71ed7a.zip |
build: vendor libtermkey
This is a proof of concept/WIP to evaluate the viability of vendoring
libtermkey as it's been deprecated.
Diffstat (limited to 'cmake.deps/CMakeLists.txt')
-rw-r--r-- | cmake.deps/CMakeLists.txt | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/cmake.deps/CMakeLists.txt b/cmake.deps/CMakeLists.txt index aa4a34709a..46052c12c6 100644 --- a/cmake.deps/CMakeLists.txt +++ b/cmake.deps/CMakeLists.txt @@ -35,7 +35,6 @@ set(DEPS_INCLUDE_FLAGS "-I${DEPS_INSTALL_DIR}/include -I${DEPS_INSTALL_DIR}/incl option(USE_BUNDLED "Use bundled dependencies." ON) option(USE_BUNDLED_UNIBILIUM "Use the bundled unibilium." ${USE_BUNDLED}) -option(USE_BUNDLED_LIBTERMKEY "Use the bundled libtermkey." ${USE_BUNDLED}) option(USE_BUNDLED_LIBVTERM "Use the bundled libvterm." ${USE_BUNDLED}) option(USE_BUNDLED_LIBUV "Use the bundled libuv." ${USE_BUNDLED}) option(USE_BUNDLED_MSGPACK "Use the bundled msgpack." ${USE_BUNDLED}) @@ -93,13 +92,6 @@ if(USE_BUNDLED_UNIBILIUM) include(BuildUnibilium) endif() -if(USE_BUNDLED_LIBTERMKEY) - include(BuildLibtermkey) - if(USE_BUNDLED_UNIBILIUM) - add_dependencies(libtermkey unibilium) - endif() -endif() - if(USE_BUNDLED_LIBVTERM) include(BuildLibvterm) endif() |