mirror of https://github.com/c-ares/c-ares.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
468 B
19 lines
468 B
8 years ago
|
@PACKAGE_INIT@
|
||
|
|
||
|
set_and_check(c-ares_INCLUDE_DIR "@PACKAGE_CMAKE_INSTALL_INCLUDEDIR@")
|
||
|
|
||
|
include("${CMAKE_CURRENT_LIST_DIR}/c-ares-targets.cmake")
|
||
|
|
||
|
set(c-ares_LIBRARY c-ares::cares)
|
||
|
|
||
|
if(@CARES_SHARED@)
|
||
|
add_library(c-ares::cares_shared ALIAS c-ares::cares)
|
||
|
set(c-ares_SHARED_LIBRARY c-ares::cares_shared)
|
||
|
elseif(@CARES_STATIC@)
|
||
|
add_library(c-ares::cares_static ALIAS c-ares::cares)
|
||
|
endif()
|
||
|
|
||
|
if(@CARES_STATIC@)
|
||
|
set(c-ares_STATIC_LIBRARY c-ares::cares_static)
|
||
|
endif()
|