diff options
author | Aqua-sama <aqua@iserlohn-fortress.net> | 2018-10-23 17:30:18 +0200 |
---|---|---|
committer | Aqua-sama <aqua@iserlohn-fortress.net> | 2018-10-23 17:30:18 +0200 |
commit | 4a226dc94f03a8bc262c537263ad536306897c48 (patch) | |
tree | b738cfbbc0e9067deb2886bfec10ddca4b36e3f3 /src | |
parent | Fix breakpad integration (diff) | |
download | smolbote-4a226dc94f03a8bc262c537263ad536306897c48.tar.xz |
Fix plasma dependency
Diffstat (limited to 'src')
-rw-r--r-- | src/meson.build | 18 |
1 files changed, 11 insertions, 7 deletions
diff --git a/src/meson.build b/src/meson.build index 0af2be0..99231d2 100644 --- a/src/meson.build +++ b/src/meson.build @@ -9,14 +9,18 @@ poi_moc = qt5.preprocess( dependencies: dep_qt5 ) -features = [] -if dep_breakpad.found() - features += '-DBreakpadEnabled' +optdepends = [] +if get_option('Breakpad').enabled() + optdepends += dep_breakpad +endif + +if get_option('Plasma').enabled() + optdepends += dep_plasma endif poi = executable('poi', install: true, - cpp_args: ['-DQAPPLICATION_CLASS=QApplication', features], - dependencies: [dep_qt5, dep_boost, dep_breakpad, dep_thread, dep_SingleApplication, + cpp_args: ['-DQAPPLICATION_CLASS=QApplication'], + dependencies: [dep_qt5, dep_boost, dep_SingleApplication, optdepends, dep_about, dep_addressbar, dep_bookmarks, dep_configuration, dep_downloads, dep_urlfilter, dep_web], include_directories: [include, genheader_inc], sources: ['main.cpp', poi_moc, @@ -31,12 +35,12 @@ poi = executable('poi', install: true, 'subwindow/subwindow.cpp', 'subwindow/tabwidget.cpp', - + 'webengine/filter.cpp', 'webengine/urlinterceptor.cpp', 'webengine/webpage.cpp', 'webengine/webview.cpp', - + 'wallet/wallet.cpp', 'wallet/wallet.h'] ) |