1
0
mirror of https://github.com/moparisthebest/curl synced 2024-11-13 21:15:08 -05:00
curl/CMake/FindCARES.cmake

25 lines
649 B
CMake
Raw Normal View History

2009-07-14 15:03:31 -04:00
# - Find c-ares
# Find the c-ares includes and library
# This module defines
# CARES_INCLUDE_DIR, where to find ares.h, etc.
# CARES_LIBRARIES, the libraries needed to use c-ares.
# CARES_FOUND, If false, do not try to use c-ares.
# also defined, but not for general use are
# CARES_LIBRARY, where to find the c-ares library.
2010-02-16 08:32:45 -05:00
find_path(CARES_INCLUDE_DIR ares.h)
2011-12-29 21:36:18 -05:00
set(CARES_NAMES ${CARES_NAMES} cares)
find_library(CARES_LIBRARY
2009-07-14 15:03:31 -04:00
NAMES ${CARES_NAMES}
)
include(FindPackageHandleStandardArgs)
find_package_handle_standard_args(CARES
REQUIRED_VARS CARES_LIBRARY CARES_INCLUDE_DIR)
2009-07-14 15:03:31 -04:00
mark_as_advanced(
2009-07-14 15:03:31 -04:00
CARES_LIBRARY
CARES_INCLUDE_DIR
)