summaryrefslogtreecommitdiff
path: root/plugins/meson.build
blob: e9c0e4919f64b0bc32d9df17428b3f85fc64d342 (plain)
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')