diff options
author | Thiago de Arruda <tpadilha84@gmail.com> | 2014-02-27 18:37:57 -0300 |
---|---|---|
committer | Thiago de Arruda <tpadilha84@gmail.com> | 2014-02-27 18:37:57 -0300 |
commit | 7637c2b664cb9ed7955bfa54b8470eb0e9396364 (patch) | |
tree | 7ae0f47a058a7fdbc54c21622190ab2d9f293d37 /src | |
parent | fd448123aa747dae519f03cc6625f331746718bc (diff) | |
download | rneovim-7637c2b664cb9ed7955bfa54b8470eb0e9396364.tar.gz rneovim-7637c2b664cb9ed7955bfa54b8470eb0e9396364.tar.bz2 rneovim-7637c2b664cb9ed7955bfa54b8470eb0e9396364.zip |
Disable unit tests until fixed for travis
Diffstat (limited to 'src')
-rw-r--r-- | src/CMakeLists.txt | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index aa1100032a..61934eb68f 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -13,7 +13,7 @@ list(APPEND NEOVIM_SOURCES "${PROJECT_BINARY_DIR}/config/auto/pathdef.c") file( GLOB OS_SOURCES os/*.c ) add_executable (nvim ${NEOVIM_SOURCES} ${OS_SOURCES}) -add_library (nvim-test SHARED ${NEOVIM_SOURCES} ${OS_SOURCES}) +# add_library (nvim-test SHARED ${NEOVIM_SOURCES} ${OS_SOURCES}) # The libraries we link against for nvim set(NVIM_LINK_LIBRARIES m ${LibUV_LIBRARIES} ${CMAKE_THREAD_LIBS_INIT}) @@ -29,23 +29,23 @@ if (LibIntl_FOUND) endif() target_link_libraries (nvim ${NVIM_LINK_LIBRARIES}) -target_link_libraries (nvim-test ${NVIM_LINK_LIBRARIES}) +# target_link_libraries (nvim-test ${NVIM_LINK_LIBRARIES}) include(CheckLibraryExists) check_library_exists(termcap tgetent "" HAVE_LIBTERMCAP) if (HAVE_LIBTERMCAP) target_link_libraries(nvim termcap) - target_link_libraries(nvim-test termcap) + # target_link_libraries(nvim-test termcap) else() check_library_exists(curses tgetent "" HAVE_LIBCURSES) if (HAVE_LIBCURSES) target_link_libraries(nvim curses) - target_link_libraries(nvim-test curses) + # target_link_libraries(nvim-test curses) else() find_package(Curses REQUIRED) target_link_libraries(nvim ${CURSES_LIBRARIES}) - target_link_libraries(nvim-test ${CURSES_LIBRARIES}) + # target_link_libraries(nvim-test ${CURSES_LIBRARIES}) endif() endif() |