Skip to content
Snippets Groups Projects
Commit 063cfa10 authored by Rye Mutt's avatar Rye Mutt :bread:
Browse files

Try disabling crash reporter on mac again

parent 2f147d53
No related branches found
No related tags found
2 merge requests!3Update to main branch,!2Rebase onto current main branch
......@@ -208,6 +208,7 @@ coverity_scan:
extends: .mac_build
variables:
AUTOBUILD_ADDRSIZE: 64
USE_SENTRY: "FALSE"
cache:
key:
prefix: darwin64
......
......@@ -7,7 +7,7 @@ include(OpenSSL)
include(ZLIBNG)
include_guard()
if (DEFINED ENV{USE_SENTRY})
if (DEFINED ENV{USE_SENTRY} AND NOT DARWIN)
set(USE_SENTRY $ENV{USE_SENTRY} CACHE BOOL "" FORCE)
endif()
......@@ -17,7 +17,7 @@ else()
set(SENTRY_DSN "" CACHE STRING "Sentry DSN")
endif()
if (INSTALL_PROPRIETARY AND NOT SENTRY_DSN STREQUAL "")
if (INSTALL_PROPRIETARY AND NOT SENTRY_DSN STREQUAL "" AND NOT DARWIN)
set(USE_SENTRY ON CACHE BOOL "Use the Sentry crash reporting system")
endif ()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment