[cmake-commits] king committed FindCURL.cmake NONE 1.1

cmake-commits at cmake.org cmake-commits at cmake.org
Thu Oct 19 12:55:46 EDT 2006


Update of /cvsroot/CMake/CMake/Modules
In directory public:/mounts/ram/cvs-serv13263

Added Files:
	FindCURL.cmake 
Log Message:
ENH: Find module for CURL library.


--- NEW FILE: FindCURL.cmake ---
# - Find curl
# Find the native CURL headers and libraries.
#
#  CURL_INCLUDE_DIRS - where to find curl/curl.h, etc.
#  CURL_LIBRARIES    - List of libraries when using curl.
#  CURL_FOUND        - True if curl found.

# Look for the header file.
FIND_PATH(CURL_INCLUDE_DIR NAMES curl/curl.h)
MARK_AS_ADVANCED(CURL_INCLUDE_DIR)

# Look for the library.
FIND_LIBRARY(CURL_LIBRARY NAMES curl)
MARK_AS_ADVANCED(CURL_LIBRARY)

# Copy the results to the output variables.
IF(CURL_INCLUDE_DIR AND CURL_LIBRARY)
  SET(CURL_FOUND 1)
  SET(CURL_LIBRARIES ${CURL_LIBRARY})
  SET(CURL_INCLUDE_DIRS ${CURL_INCLUDE_DIR})
ELSE(CURL_INCLUDE_DIR AND CURL_LIBRARY)
  SET(CURL_FOUND 0)
  SET(CURL_LIBRARIES)
  SET(CURL_INCLUDE_DIRS)
ENDIF(CURL_INCLUDE_DIR AND CURL_LIBRARY)

# Report the results.
IF(NOT CURL_FOUND)
  SET(CURL_DIR_MESSAGE
    "CURL was not found. Make sure CURL_LIBRARY and CURL_INCLUDE_DIR are set.")
  IF(NOT CURL_FIND_QUIETLY)
    MESSAGE(STATUS "${CURL_DIR_MESSAGE}")
  ELSE(NOT CURL_FIND_QUIETLY)
    IF(CURL_FIND_REQUIRED)
      MESSAGE(FATAL_ERROR "${CURL_DIR_MESSAGE}")
    ENDIF(CURL_FIND_REQUIRED)
  ENDIF(NOT CURL_FIND_QUIETLY)
ENDIF(NOT CURL_FOUND)



More information about the Cmake-commits mailing list