blob: af4cfcbcfb98aefb68630763155440a78460bbb5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
webprofile_lib = static_library('webprofile',
['webprofilemanager.cpp', 'webprofile.cpp', interfaces_moc,
qt5.preprocess(moc_headers: ['webprofilemanager.h', 'webprofile.h'], dependencies: dep_qt5)],
dependencies: dep_qt5,
include_directories: [include]
)
dep_webprofile = declare_dependency(
include_directories: include_directories('.'),
link_with: webprofile_lib
)
|