aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorRich Wareham <rjw57@cam.ac.uk>2014-02-24 20:59:03 +0000
committerThiago de Arruda <tpadilha84@gmail.com>2014-02-26 07:09:11 -0300
commit2a6780431e7a8a4ecf41e44d72d8bac639df7ee3 (patch)
treec9b88a71e909ec24d0910e4cc5f89aaf73cc9d0e /src
parent598f9fba861beb7a208e03c3ba71e57deb31a43d (diff)
downloadrneovim-2a6780431e7a8a4ecf41e44d72d8bac639df7ee3.tar.gz
rneovim-2a6780431e7a8a4ecf41e44d72d8bac639df7ee3.tar.bz2
rneovim-2a6780431e7a8a4ecf41e44d72d8bac639df7ee3.zip
make use of libuv when found by CMake
Diffstat (limited to 'src')
-rw-r--r--src/CMakeLists.txt2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt
index dfd0764a94..96c0b01f3d 100644
--- a/src/CMakeLists.txt
+++ b/src/CMakeLists.txt
@@ -14,7 +14,7 @@ file( GLOB OS_SOURCES os/*.c )
add_executable (nvim ${NEOVIM_SOURCES} ${OS_SOURCES})
-target_link_libraries (nvim m uv ${CMAKE_THREAD_LIBS_INIT})
+target_link_libraries (vim m ${LibUV_LIBRARIES} ${CMAKE_THREAD_LIBS_INIT})
include(CheckLibraryExists)
check_library_exists(termcap tgetent "" HAVE_LIBTERMCAP)