aboutsummaryrefslogtreecommitdiff
path: root/lib/bookmarks/meson.build
blob: a7f603bec51d5978a6be248c7a24a84412e81995 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
bookmarks_moc = mod_qt5.preprocess(
    moc_headers: [ 'bookmarkmodel.h' ],
    dependencies: dep_qt5
)

bookmarks_lib = static_library('bookmarks', 
    [ bookmarks_moc,
    'bookmarkformat.cpp', 'formats/xbel.cpp',
    'bookmarkitem.cpp', 'bookmarkmodel.cpp' ],
    dependencies: dep_qt5
)

dep_bookmarks = declare_dependency(
    include_directories: include_directories('.'),
    link_with: bookmarks_lib
)