diff options
author | Jörg Frings-Fürst <debian@jff-webhosting.net> | 2016-08-20 15:11:08 +0200 |
---|---|---|
committer | Jörg Frings-Fürst <debian@jff-webhosting.net> | 2016-08-20 15:11:08 +0200 |
commit | cb612a12b952e349b96d427645aaeb55d15f509a (patch) | |
tree | f29298f41d2a7ea2a976616243aca64c2c2547ce /publish.am | |
parent | e7be93745e4a2ff3aa255227bef7b9d3b733aafa (diff) | |
parent | 143bfc9f801c84428074312d661f8e08803df83b (diff) |
Merge tag 'upstream/0.23.5'
Upstream version 0.23.5
Diffstat (limited to 'publish.am')
-rw-r--r-- | publish.am | 57 |
1 files changed, 57 insertions, 0 deletions
diff --git a/publish.am b/publish.am new file mode 100644 index 0000000..194dcb6 --- /dev/null +++ b/publish.am @@ -0,0 +1,57 @@ +plugin_LTLIBRARIES += plugins/shotwell-publishing/shotwell-publishing.la + +dist_noinst_DATA += \ + plugins/shotwell-publishing/facebook.png \ + plugins/shotwell-publishing/flickr.png \ + plugins/shotwell-publishing/picasa.png \ + plugins/shotwell-publishing/piwigo.png \ + plugins/shotwell-publishing/youtube.png \ + plugins/shotwell-publishing/facebook_publishing_options_pane.ui \ + plugins/shotwell-publishing/flickr_pin_entry_pane.ui \ + plugins/shotwell-publishing/flickr_publishing_options_pane.ui \ + plugins/shotwell-publishing/picasa_publishing_options_pane.ui \ + plugins/shotwell-publishing/piwigo_authentication_pane.ui \ + plugins/shotwell-publishing/piwigo_publishing_options_pane.ui \ + plugins/shotwell-publishing/youtube_publishing_options_pane.ui \ + plugins/shotwell-publishing/org.gnome.Shotwell.Publishing.gresource.xml + +plugins_shotwell_publishing_shotwell_publishing_la_SOURCES = \ + plugins/shotwell-publishing/shotwell-publishing.vala \ + plugins/shotwell-publishing/FacebookPublishing.vala \ + plugins/shotwell-publishing/PicasaPublishing.vala \ + plugins/shotwell-publishing/FlickrPublishing.vala \ + plugins/shotwell-publishing/YouTubePublishing.vala \ + plugins/shotwell-publishing/PiwigoPublishing.vala \ + plugins/shotwell-plugin-common.vapi + +nodist_plugins_shotwell_publishing_shotwell_publishing_la_SOURCES = \ + plugins/shotwell-publishing/resource.c +MOSTLYCLEANFILES += plugins/shotwell-publishing/resource.c + +plugins/shotwell-publishing/resource.c: plugins/shotwell-publishing/org.gnome.Shotwell.Publishing.gresource.xml + $(AM_V_GEN)$(GLIB_COMPILE_RESOURCES) --target=$@ --sourcedir=$(abs_top_srcdir)/plugins/shotwell-publishing --generate $< + +plugins_shotwell_publishing_shotwell_publishing_la_VALAFLAGS = \ + $(COMMON_VALAFLAGS) \ + --pkg gtk+-3.0 \ + --pkg libsoup-2.4 \ + --pkg gexiv2 \ + --pkg gee-0.8 \ + --pkg json-glib-1.0 \ + --pkg shotwell-plugin-dev-1.0 \ + --pkg libxml-2.0 \ + --pkg webkit2gtk-4.0 \ + --vapidir $(abs_top_srcdir)/plugins + +plugins_shotwell_publishing_shotwell_publishing_la_CFLAGS = \ + -DPLUGIN_RESOURCE_PATH='"/org/gnome/Shotwell/Publishing"' \ + $(PLUGIN_CFLAGS) \ + $(COMMON_CFLAGS) \ + -I $(top_srcdir)/plugins + +plugins_shotwell_publishing_shotwell_publishing_la_LDFLAGS = \ + $(SHOTWELL_PLUGIN_LDFLAGS) + +plugins_shotwell_publishing_shotwell_publishing_la_LIBADD = \ + $(PUBLISHING_LIBS) \ + $(top_builddir)/plugins/common/libshotwell-plugin-common.la |