summaryrefslogtreecommitdiff
path: root/cscript
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2025-11-30 23:45:20 +0100
committerCarl Hetherington <cth@carlh.net>2025-12-01 00:54:39 +0100
commit42d11b68812108ccda802d0ff950b5299d08e40a (patch)
treec67b5fad9af6148d722aef9770971466cc0ca54c /cscript
parente30a2d522f0a5e29ed13254e8cac0c0b3e91cedc (diff)
Add sentry crash reporting on Windows.sentry
Diffstat (limited to 'cscript')
-rw-r--r--cscript4
1 files changed, 4 insertions, 0 deletions
diff --git a/cscript b/cscript
index 757663691..03fe71b87 100644
--- a/cscript
+++ b/cscript
@@ -583,6 +583,10 @@ def configure_options(target, options, for_package=False):
):
opt += ' --enable-grok'
+
+ if target.platform == 'windows':
+ opt += ' --enable-sentry'
+
if build_with_cpp17(target):
opt += ' --c++17'