mirror of
https://github.com/curl/curl.git
synced 2026-04-14 13:01:42 +08:00
Also:
- memdebug: fix symbol collision in unity builds.
- memdebug: fix compiler warning by making a variable static.
Follow-up to c77bed81a2 #19657
Closes #19666
53 lines
1.9 KiB
CMake
53 lines
1.9 KiB
CMake
#***************************************************************************
|
|
# _ _ ____ _
|
|
# Project ___| | | | _ \| |
|
|
# / __| | | | |_) | |
|
|
# | (__| |_| | _ <| |___
|
|
# \___|\___/|_| \_\_____|
|
|
#
|
|
# Copyright (C) Daniel Stenberg, <daniel@haxx.se>, et al.
|
|
#
|
|
# This software is licensed as described in the file COPYING, which
|
|
# you should have received as part of this distribution. The terms
|
|
# are also available at https://curl.se/docs/copyright.html.
|
|
#
|
|
# You may opt to use, copy, modify, merge, publish, distribute and/or sell
|
|
# copies of the Software, and permit persons to whom the Software is
|
|
# furnished to do so, under the terms of the COPYING file.
|
|
#
|
|
# This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
# KIND, either express or implied.
|
|
#
|
|
# SPDX-License-Identifier: curl
|
|
#
|
|
###########################################################################
|
|
# Find the libbacktrace library
|
|
#
|
|
# Input variables:
|
|
#
|
|
# - `LIBBACKTRACE_INCLUDE_DIR`: Absolute path to libbacktrace include directory.
|
|
# - `LIBBACKTRACE_LIBRARY`: Absolute path to `libbacktrace` library.
|
|
#
|
|
# Result variables:
|
|
#
|
|
# - `LIBBACKTRACE_FOUND`: System has libbacktrace.
|
|
# - `LIBBACKTRACE_INCLUDE_DIRS`: The libbacktrace include directories.
|
|
# - `LIBBACKTRACE_LIBRARIES`: The libbacktrace library names.
|
|
|
|
find_path(LIBBACKTRACE_INCLUDE_DIR NAMES "backtrace.h")
|
|
find_library(LIBBACKTRACE_LIBRARY NAMES "backtrace" "libbacktrace")
|
|
|
|
include(FindPackageHandleStandardArgs)
|
|
find_package_handle_standard_args(Libbacktrace
|
|
REQUIRED_VARS
|
|
LIBBACKTRACE_INCLUDE_DIR
|
|
LIBBACKTRACE_LIBRARY
|
|
)
|
|
|
|
if(LIBBACKTRACE_FOUND)
|
|
set(LIBBACKTRACE_INCLUDE_DIRS ${LIBBACKTRACE_INCLUDE_DIR})
|
|
set(LIBBACKTRACE_LIBRARIES ${LIBBACKTRACE_LIBRARY})
|
|
endif()
|
|
|
|
mark_as_advanced(LIBBACKTRACE_INCLUDE_DIR LIBBACKTRACE_LIBRARY)
|