diff options
author | Nicolai Skogheim <nicolai.skogheim@gmail.com> | 2016-06-23 04:46:21 +0200 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2016-06-22 22:46:21 -0400 |
commit | c475e3f8d165e91cbafe4e34ae1ca3c857533703 (patch) | |
tree | bd162799086cd2ceebcb088c51836a2a00c42be5 | |
parent | dff0dd261153573c26db42b7a04c2bf828337ef2 (diff) | |
download | rneovim-c475e3f8d165e91cbafe4e34ae1ca3c857533703.tar.gz rneovim-c475e3f8d165e91cbafe4e34ae1ca3c857533703.tar.bz2 rneovim-c475e3f8d165e91cbafe4e34ae1ca3c857533703.zip |
cmake: remove unused includes (#4947)
-rw-r--r-- | CMakeLists.txt | 3 | ||||
-rw-r--r-- | src/nvim/CMakeLists.txt | 3 |
2 files changed, 0 insertions, 6 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index f736508641..0b3e6ec85e 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -291,9 +291,6 @@ endif() include_directories("${PROJECT_BINARY_DIR}/config") include_directories("${PROJECT_SOURCE_DIR}/src") -# Modules used by platform auto-detection -include(CheckLibraryExists) - find_package(LibUV REQUIRED) include_directories(SYSTEM ${LIBUV_INCLUDE_DIRS}) diff --git a/src/nvim/CMakeLists.txt b/src/nvim/CMakeLists.txt index feb17e070e..d80add2835 100644 --- a/src/nvim/CMakeLists.txt +++ b/src/nvim/CMakeLists.txt @@ -1,6 +1,3 @@ -include(CheckLibraryExists) -include(CheckCCompilerFlag) - option(USE_GCOV "Enable gcov support" OFF) if(NOT CLANG_TSAN) |