From e94f933f396e0f08243994679977602d341b117a Mon Sep 17 00:00:00 2001 From: Rich Wareham Date: Mon, 24 Feb 2014 21:01:52 +0000 Subject: [PATCH] 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. --- CMakeLists.txt | 4 ---- 1 file changed, 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)