1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
# Plugin helper library
sw_plugin_common = library('shotwell-plugin-common',
['common/RESTSupport.vala',
'common/Resources.vala',
'common/WebAuthenticationPane.vala',
'common/BuilderPane.vala',
'common/OAuth1Support.vala'],
version: meson.project_version(),
dependencies : [gtk, gee, webkit, soup, xml, sw_plugin],
vala_header : 'shotwell-plugin-common.h',
vala_vapi : 'shotwell-plugin-common.vapi',
include_directories : config_incdir,
install : true)
sw_plugin_common_dep = declare_dependency(include_directories : include_directories('.'),
link_with : sw_plugin_common)
subdir('authenticator')
subdir('shotwell-publishing')
subdir('shotwell-transitions')
|