blob: 81c1ecef629bd44dcca18650dfc0626bd162428d (
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', 'formats/ffjson.cpp',
'bookmarkitem.cpp', 'bookmarkmodel.cpp' ],
dependencies: dep_qt5
)
dep_bookmarks = declare_dependency(
include_directories: include_directories('.'),
link_with: bookmarks_lib
)
|