diff options
author | Aqua-sama <aqua@iserlohn-fortress.net> | 2020-11-20 16:25:20 +0200 |
---|---|---|
committer | Aqua-sama <aqua@iserlohn-fortress.net> | 2020-11-20 20:52:47 +0200 |
commit | 4633d4648a048c16744117ac6d48098e47f6f214 (patch) | |
tree | 2e974c656ab8f26924e367a53d176d69f443e46d /plugins/AdblockFilter | |
parent | Drop args.hxx dependency (diff) | |
download | smolbote-4633d4648a048c16744117ac6d48098e47f6f214.tar.xz |
Fix meson warnings
Update about dialog
Diffstat (limited to 'plugins/AdblockFilter')
-rw-r--r-- | plugins/AdblockFilter/meson.build | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/AdblockFilter/meson.build b/plugins/AdblockFilter/meson.build index 942f325..19d2509 100644 --- a/plugins/AdblockFilter/meson.build +++ b/plugins/AdblockFilter/meson.build @@ -21,17 +21,17 @@ dep_adblockfilter = declare_dependency( # install_dir: get_option('libdir')/'smolbote/plugins' #) -test('adblock: rule', executable('libadblockfilter_rule', +test('adblock_rule', executable('libadblockfilter_rule', sources: 'test/rule.cpp', dependencies: [ dep_qt5, dep_catch, dep_adblockfilter ] )) -test('adblock: options', executable('libadblockfilter_options', +test('adblock_options', executable('libadblockfilter_options', sources: 'test/options.cpp', dependencies: [ dep_qt5, dep_catch, dep_adblockfilter ] )) -test('adblock: filterlist', executable('libadblockfilter_filterlist', +test('adblock_filterlist', executable('libadblockfilter_filterlist', sources: 'test/filterlist.cpp', dependencies: [ dep_qt5, dep_catch, dep_adblockfilter ] )) |