aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRich Wareham <rjw57@cam.ac.uk>2014-02-24 21:01:52 +0000
committerThiago de Arruda <tpadilha84@gmail.com>2014-02-26 07:09:11 -0300
commite94f933f396e0f08243994679977602d341b117a (patch)
tree0a1c5970005db3ae9d7ca3834e5c73d99cea1304
parent2a6780431e7a8a4ecf41e44d72d8bac639df7ee3 (diff)
downloadrneovim-e94f933f396e0f08243994679977602d341b117a.tar.gz
rneovim-e94f933f396e0f08243994679977602d341b117a.tar.bz2
rneovim-e94f933f396e0f08243994679977602d341b117a.zip
CMakeLists: remove hardcoded .deps directory
We use the standard CMAKE_PREFIX_PATH variable to pass the location of .deps as a search location on the command line. There is now no need for explicitly hard-coding it.
-rw-r--r--CMakeLists.txt4
1 files changed, 0 insertions, 4 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 0f8f41f7a4..b057a67f69 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -31,10 +31,6 @@ endif(NOT CMAKE_USE_PTHREADS_INIT)
find_package(LibUV REQUIRED)
include_directories(${LibUV_INCLUDE_DIRS})
-# add dependencies to include/lib directories
-link_directories ("${PROJECT_SOURCE_DIR}/.deps/usr/lib")
-include_directories ("${PROJECT_SOURCE_DIR}/.deps/usr/include")
-
include_directories ("${PROJECT_BINARY_DIR}/config")
set (CMAKE_RUNTIME_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR}/bin)