aboutsummaryrefslogtreecommitdiff
path: root/staging/filterlist/meson.build
blob: eb5b61f3363400f73a903a31d4e5310508b235b5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
dep_staging_utils = declare_dependency(
  include_directories: include_directories('.'),
  link_with: static_library('staging-utils',
    [ 'downloadmanager.cpp',
      mod_qt5.preprocess(moc_headers: 'downloadmanager.h')
    ],
    dependencies: dep_qt5
  )
)

executable('filterlist',
  dependencies: [ dep_qt5, dep_staging_utils ],
  sources: [ 'test/main.cpp' ]
)

#test('adblockfilter: parser',
#  executable('adblockfilter-parsefilter',
#    dependencies: [ dep_qt5, dep_gtest, dep_adblockfilter ],
#    sources: [ 'test/parser.cpp' ]
#  ),
#  workdir: meson.current_source_dir() / 'test',
#  should_fail: true
#)