diff options
author | Thiago de Arruda <tpadilha84@gmail.com> | 2014-02-02 03:36:01 -0800 |
---|---|---|
committer | Thiago de Arruda <tpadilha84@gmail.com> | 2014-02-02 03:36:01 -0800 |
commit | 930f26d1ed796c580526e71a7fd866744ad8c5fb (patch) | |
tree | 19bc80b7c449e1d71d964bd027a55616b0761c86 /src | |
parent | 8253e29971c54310434ee93d987a99994769d717 (diff) | |
parent | 63b571dfba53d1dc526e841d7ce99205cabff465 (diff) | |
download | rneovim-930f26d1ed796c580526e71a7fd866744ad8c5fb.tar.gz rneovim-930f26d1ed796c580526e71a7fd866744ad8c5fb.tar.bz2 rneovim-930f26d1ed796c580526e71a7fd866744ad8c5fb.zip |
Merge pull request #2 from ashleyh/master
Remove uneeded 'rt' library
Diffstat (limited to 'src')
-rw-r--r-- | src/CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 49c0ef42cb..1c7829e7d6 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -14,7 +14,7 @@ file( GLOB IO_SOURCES io/*.c ) add_executable (vim ${NEOVIM_SOURCES} ${IO_SOURCES}) -target_link_libraries (vim m uv rt pthread) +target_link_libraries (vim m uv pthread) include(CheckLibraryExists) check_library_exists(termcap tgetent "" HAVE_LIBTERMCAP) |