mirror of
https://github.com/netdata/netdata.git
synced 2024-11-21 15:28:05 +00:00
b7ec9126c9
Semver does not have the concept of a tweak field. To address this, we just drop the major field which has not changed in ages. We can simply ignore/drop old sentry releases if/when we perform any major releases.
31 lines
1.0 KiB
CMake
31 lines
1.0 KiB
CMake
# Functions and macros for handling of Sentry
|
|
#
|
|
# Copyright (c) 2024 Netdata Inc.
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
# Handle bundling of Sentry.
|
|
#
|
|
# This pulls it in as a sub-project using FetchContent functionality.
|
|
#
|
|
# This needs to be a function and not a macro for variable scoping
|
|
# reasons. All the things we care about from the sub-project are exposed
|
|
# as targets, which are globally scoped and not function scoped.
|
|
function(netdata_bundle_sentry)
|
|
include(FetchContent)
|
|
|
|
# ignore debhelper
|
|
set(FETCHCONTENT_FULLY_DISCONNECTED Off)
|
|
|
|
set(SENTRY_VERSION 0.6.6)
|
|
set(SENTRY_BACKEND "breakpad")
|
|
set(SENTRY_BUILD_SHARED_LIBS OFF)
|
|
|
|
FetchContent_Declare(
|
|
sentry
|
|
GIT_REPOSITORY https://github.com/getsentry/sentry-native.git
|
|
GIT_TAG c97bcc63fa89ae557cef9c9b6e3acb11a72ff97d # v0.6.6
|
|
CMAKE_ARGS ${NETDATA_CMAKE_PROPAGATE_TOOLCHAIN_ARGS}
|
|
)
|
|
FetchContent_MakeAvailable(sentry)
|
|
endfunction()
|