diff options
author | Andy Cedilnik <andy.cedilnik@kitware.com> | 2005-06-24 13:06:26 (GMT) |
---|---|---|
committer | Andy Cedilnik <andy.cedilnik@kitware.com> | 2005-06-24 13:06:26 (GMT) |
commit | b7514580f91fd7accb1426eaed52eaa93f54ae3d (patch) | |
tree | b6c7f14c5d072736a6f47db27e974003f9299852 /Source | |
parent | 7c730973bba620ba50e02fb1330e99c2230d3d8b (diff) | |
download | CMake-b7514580f91fd7accb1426eaed52eaa93f54ae3d.zip CMake-b7514580f91fd7accb1426eaed52eaa93f54ae3d.tar.gz CMake-b7514580f91fd7accb1426eaed52eaa93f54ae3d.tar.bz2 |
ENH: Move curl to utilities
Diffstat (limited to 'Source')
-rw-r--r-- | Source/CMakeLists.txt | 1 | ||||
-rw-r--r-- | Source/CTest/cmCTestSubmitHandler.cxx | 2 | ||||
-rw-r--r-- | Source/cmCTest.cxx | 2 |
3 files changed, 3 insertions, 2 deletions
diff --git a/Source/CMakeLists.txt b/Source/CMakeLists.txt index bb8f0a4..b7265ed 100644 --- a/Source/CMakeLists.txt +++ b/Source/CMakeLists.txt @@ -198,6 +198,7 @@ ENDIF(CMAKE_BUILD_ON_VISUAL_STUDIO) INCLUDE_DIRECTORIES( "${CMAKE_SOURCE_DIR}/Source/CTest" ${CMAKE_XMLRPC_INCLUDES} + ${CMAKE_CURL_INCLUDES} ) # # Sources for CTestLib diff --git a/Source/CTest/cmCTestSubmitHandler.cxx b/Source/CTest/cmCTestSubmitHandler.cxx index 3fd27b1..32eff81 100644 --- a/Source/CTest/cmCTestSubmitHandler.cxx +++ b/Source/CTest/cmCTestSubmitHandler.cxx @@ -29,7 +29,7 @@ PURPOSE. See the above copyright notices for more information. #include "xmlrpc_client.h" // For curl submission -#include "CTest/Curl/curl/curl.h" +#include "cmcurl/curl/curl.h" #include <sys/stat.h> diff --git a/Source/cmCTest.cxx b/Source/cmCTest.cxx index 1d4ac21..e7017c5 100644 --- a/Source/cmCTest.cxx +++ b/Source/cmCTest.cxx @@ -14,7 +14,7 @@ PURPOSE. See the above copyright notices for more information. =========================================================================*/ -#include "CTest/Curl/curl/curl.h" +#include "cmcurl/curl/curl.h" #include "cmCTest.h" #include "cmake.h" |