diff options
author | Jakub Zakrzewski <jzakrzewski@e2ebridge.com> | 2014-08-22 17:02:59 +0200 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2014-10-09 13:48:30 +0200 |
commit | a3154295c5b0b538d7883d30e6f1325b69bb50fd (patch) | |
tree | 4e7470637e55301850da87fe03ed55a48bcf7f3e /src | |
parent | 2257deb50261e1e3193dd40ce92ae4f94ae135a1 (diff) |
Cmake: Got rid of setup_curl_dependencies
There is no need for such function. Include_directories propagate by
themselves and having a function with one simple link statement makes
little sense.
Diffstat (limited to 'src')
-rw-r--r-- | src/CMakeLists.txt | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 2822c5bc2..fceaf10fb 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -30,11 +30,8 @@ include_directories( ${CURL_BINARY_DIR}/include # To be able to reach "curl/curlbuild.h" ) - -# Setup dependencies -setup_curl_dependencies(${EXE_NAME}) -target_link_libraries( ${EXE_NAME} libcurl ) - +#Build cURL executable +target_link_libraries( ${EXE_NAME} libcurl ${CURL_LIBS}) ################################################################################ |