aboutsummaryrefslogtreecommitdiff
path: root/staging/filterlist/meson.build
blob: b8f2263af5b4b8c8708d1467a6f014efb6984682 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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' ]
)