From 12d9dcaf8af2bd668c1f03275d82314347c0c153 Mon Sep 17 00:00:00 2001 From: Aqua-sama Date: Tue, 23 Oct 2018 15:17:39 +0200 Subject: Fix breakpad integration --- src/meson.build | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) (limited to 'src/meson.build') diff --git a/src/meson.build b/src/meson.build index 9ce42d4..0af2be0 100644 --- a/src/meson.build +++ b/src/meson.build @@ -9,9 +9,14 @@ poi_moc = qt5.preprocess( dependencies: dep_qt5 ) +features = [] +if dep_breakpad.found() + features += '-DBreakpadEnabled' +endif + poi = executable('poi', install: true, - cpp_args: '-DQAPPLICATION_CLASS=QApplication', - dependencies: [dep_qt5, dep_boost, dep_breakpad, dep_SingleApplication, + cpp_args: ['-DQAPPLICATION_CLASS=QApplication', features], + dependencies: [dep_qt5, dep_boost, dep_breakpad, dep_thread, dep_SingleApplication, dep_about, dep_addressbar, dep_bookmarks, dep_configuration, dep_downloads, dep_urlfilter, dep_web], include_directories: [include, genheader_inc], sources: ['main.cpp', poi_moc, -- cgit v1.2.1