Mercurial > hg > orthanc
comparison Resources/CMake/LibCurlConfiguration.cmake @ 1537:fbf763bb1fa3
error detection in patches
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Thu, 13 Aug 2015 15:25:38 +0200 |
parents | 1b03676d68c2 |
children | 4d0e2c38d15b |
comparison
equal
deleted
inserted
replaced
1536:1b03676d68c2 | 1537:fbf763bb1fa3 |
---|---|
1 if (STATIC_BUILD OR NOT USE_SYSTEM_CURL) | 1 if (STATIC_BUILD OR NOT USE_SYSTEM_CURL) |
2 SET(CURL_SOURCES_DIR ${CMAKE_BINARY_DIR}/curl-7.44.0) | 2 SET(CURL_SOURCES_DIR ${CMAKE_BINARY_DIR}/curl-7.44.0) |
3 DownloadPackage( | 3 SET(CURL_URL "http://www.montefiore.ulg.ac.be/~jodogne/Orthanc/ThirdPartyDownloads/curl-7.44.0.tar.gz") |
4 "cf46112b5151e2f1a3fd38439bdade23" | 4 SET(CURL_MD5 "cf46112b5151e2f1a3fd38439bdade23") |
5 "http://www.montefiore.ulg.ac.be/~jodogne/Orthanc/ThirdPartyDownloads/curl-7.44.0.tar.gz" | 5 |
6 "${CURL_SOURCES_DIR}") | 6 DownloadPackage(${CURL_MD5} ${CURL_URL} "${CURL_SOURCES_DIR}") |
7 | 7 |
8 include_directories( | 8 include_directories( |
9 ${CURL_SOURCES_DIR}/include | 9 ${CURL_SOURCES_DIR}/include |
10 ) | 10 ) |
11 | 11 |