diff options
author | Thiago de Arruda <tpadilha84@gmail.com> | 2015-02-28 10:41:53 -0300 |
---|---|---|
committer | Thiago de Arruda <tpadilha84@gmail.com> | 2015-02-28 10:41:53 -0300 |
commit | 81a346553c76b25286111305c8b3a33d4a9f4a8f (patch) | |
tree | e6906ec0a0b583f638844c188c25fd1b26ee433f /src | |
parent | 585e5d32a3402bffa971ae8124fc64004ab92e61 (diff) | |
download | rneovim-81a346553c76b25286111305c8b3a33d4a9f4a8f.tar.gz rneovim-81a346553c76b25286111305c8b3a33d4a9f4a8f.tar.bz2 rneovim-81a346553c76b25286111305c8b3a33d4a9f4a8f.zip |
deps: Add libvterm to the project dependencies
libvterm is a terminal emulation library with abstract display. It will be used
to implement builtin terminal emulation into Nvim.
Diffstat (limited to 'src')
-rw-r--r-- | src/nvim/CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/CMakeLists.txt b/src/nvim/CMakeLists.txt index c59de2b5de..92fbc0c8c9 100644 --- a/src/nvim/CMakeLists.txt +++ b/src/nvim/CMakeLists.txt @@ -171,7 +171,7 @@ list(APPEND NVIM_LINK_LIBRARIES ${LIBUV_LIBRARIES} ${MSGPACK_LIBRARIES} ${LUAJIT_LIBRARIES} - ${LIBTICKIT_LIBRARIES} + ${LIBVTERM_LIBRARIES} ${LIBTERMKEY_LIBRARIES} ${LIBUNIBILIUM_LIBRARIES} m |