summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJens Georg <mail@jensge.org>2017-05-21 12:37:48 +0200
committerJens Georg <mail@jensge.org>2017-05-21 20:16:33 +0200
commit506ffc6e7b393aaa00b8e81102dea92bf898fd3b (patch)
tree14dc96342b2b57a0d623081c7160f4e465715e41
parentc08431f3e70edca8396d16ac46e4ebd887e7003d (diff)
downloadrygel-506ffc6e7b393aaa00b8e81102dea92bf898fd3b.tar.gz
meson: Add lms plugin
-rw-r--r--meson.build1
-rw-r--r--src/plugins/lms/meson.build24
-rw-r--r--src/plugins/meson.build1
3 files changed, 26 insertions, 0 deletions
diff --git a/meson.build b/meson.build
index a7cea80e..145c34c9 100644
--- a/meson.build
+++ b/meson.build
@@ -74,6 +74,7 @@ rygel_deps = common_deps
external_plugin_deps = [gio]
gst_launch_plugin_deps = [gstreamer]
+lms_deps = [sqlite]
configure_file(output: 'config.h', configuration: conf)
diff --git a/src/plugins/lms/meson.build b/src/plugins/lms/meson.build
new file mode 100644
index 00000000..545cc7d4
--- /dev/null
+++ b/src/plugins/lms/meson.build
@@ -0,0 +1,24 @@
+lms_sources = [
+ 'rygel-lms-plugin.vala',
+ 'rygel-lms-plugin-factory.vala',
+ 'rygel-lms-root-container.vala',
+ 'rygel-lms-music-root.vala',
+ 'rygel-lms-image-root.vala',
+ 'rygel-lms-category-container.vala',
+ 'rygel-lms-all-music.vala',
+ 'rygel-lms-album.vala',
+ 'rygel-lms-albums.vala',
+ 'rygel-lms-artist.vala',
+ 'rygel-lms-artists.vala',
+ 'rygel-lms-all-videos.vala',
+ 'rygel-lms-database.vala',
+ 'rygel-lms-all-images.vala',
+ 'rygel-lms-image-years.vala',
+ 'rygel-lms-image-year.vala',
+ 'rygel-lms-dbus-interfaces.vala']
+
+lms_plugin = library('rygel-lms',
+ lms_sources,
+ dependencies : lms_deps + [build_config, rygel_core, rygel_server, rygel_db],
+ install : true,
+ install_dir : rygel_plugindir)
diff --git a/src/plugins/meson.build b/src/plugins/meson.build
index 9c3221ed..b4bb0803 100644
--- a/src/plugins/meson.build
+++ b/src/plugins/meson.build
@@ -1,2 +1,3 @@
subdir('external')
subdir('gst-launch')
+subdir('lms')