aboutsummaryrefslogtreecommitdiff
path: root/lib/urlfilter/meson.build
blob: 9178d1c294e3f267a47de0a4fa5f0c64315f485a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
urlfilter_inc = include_directories('.')
urlfilter_lib = static_library('urlfilter', 
    ['filtertree.cpp', 'filtertree.h', 'filterleaf.cpp', 'filterleaf.h', 
    'domain.cpp', 'domain.h', 
    'formats/adblockrule.cpp', 'formats/adblockrule.h', 
    'formats/hostlistrule.cpp', 'formats/hostlistrule.h'],
    dependencies: dep_qt5
)

dep_urlfilter = declare_dependency(
    include_directories: urlfilter_inc,
    link_with: urlfilter_lib,
    sources: ['filtertree.cpp', 'filtertree.h', 'filterleaf.cpp', 'filterleaf.h', 
    'domain.cpp', 'domain.h', 
    'formats/adblockrule.cpp', 'formats/adblockrule.h', 
    'formats/hostlistrule.cpp', 'formats/hostlistrule.h']
)