package An official xmake package repository
https://xrepo.xmake.io/
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.
21 lines
779 B
21 lines
779 B
2 years ago
|
diff --git a/c-ares-config.cmake.in b/c-ares-config.cmake.in
|
||
|
--- a/c-ares-config.cmake.in
|
||
|
+++ b/c-ares-config.cmake.in
|
||
|
@@ -8,12 +8,16 @@ include("${CMAKE_CURRENT_LIST_DIR}/c-ares-targets.cmake")
|
||
|
set(c-ares_LIBRARY c-ares::cares)
|
||
|
|
||
|
if(@CARES_SHARED@)
|
||
|
+ if(NOT TARGET c-ares::cares_shared)
|
||
|
add_library(c-ares::cares_shared INTERFACE IMPORTED)
|
||
|
set_target_properties(c-ares::cares_shared PROPERTIES INTERFACE_LINK_LIBRARIES "c-ares::cares")
|
||
|
+ endif()
|
||
|
set(c-ares_SHARED_LIBRARY c-ares::cares_shared)
|
||
|
elseif(@CARES_STATIC@)
|
||
|
+ if(NOT TARGET c-ares::cares_static)
|
||
|
add_library(c-ares::cares_static INTERFACE IMPORTED)
|
||
|
set_target_properties(c-ares::cares_static PROPERTIES INTERFACE_LINK_LIBRARIES "c-ares::cares")
|
||
|
+ endif()
|
||
|
endif()
|
||
|
|
||
|
if(@CARES_STATIC@)
|