mirror of
https://github.com/nodejs/node.git
synced 2024-11-24 20:29:23 +01:00
b39fad6052
PR-URL: https://github.com/nodejs/node/pull/54549 Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Mohammed Keyvanzadeh <mohammadkeyvanzade94@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com> Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com>
24 lines
775 B
CMake
24 lines
775 B
CMake
#***************************************************************************
|
|
# Project ___ __ _ _ __ ___ ___
|
|
# / __|____ / _` | '__/ _ \/ __|
|
|
# | (_|_____| (_| | | | __/\__ \
|
|
# \___| \__,_|_| \___||___/
|
|
#
|
|
# Copyright (C) The c-ares project and its contributors
|
|
# SPDX-License-Identifier: MIT
|
|
prefix=@CMAKE_INSTALL_PREFIX@
|
|
exec_prefix=${prefix}/@CMAKE_INSTALL_BINDIR@
|
|
libdir=${prefix}/@CMAKE_INSTALL_LIBDIR@
|
|
includedir=${prefix}/@CMAKE_INSTALL_INCLUDEDIR@
|
|
|
|
Name: c-ares
|
|
URL: https://c-ares.org/
|
|
Description: asynchronous DNS lookup library
|
|
Version: @CARES_VERSION@
|
|
Requires:
|
|
Requires.private:
|
|
Cflags: -I${includedir}
|
|
Cflags.private: -DCARES_STATICLIB
|
|
Libs: -L${libdir} -lcares
|
|
Libs.private: @CARES_PRIVATE_LIBS@
|