Skip to content

Commit

Permalink
meson: Add phone-ringer plugin
Browse files Browse the repository at this point in the history
  • Loading branch information
igsha committed Apr 5, 2024
1 parent b6bb5b3 commit 8a14457
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 0 deletions.
2 changes: 2 additions & 0 deletions plugins/meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,6 @@ subdir('rtp')
if host_machine.system() == 'windows'
subdir('win32-fonts')
subdir('windows-notification')
else
subdir('phone-ringer')
endif
19 changes: 19 additions & 0 deletions plugins/phone-ringer/meson.build
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
dependencies = [
dep_dino,
dep_libcanberra,
dep_gee,
dep_glib,
dep_gmodule,
dep_gdk_pixbuf,
dep_qlite,
dep_xmpp_vala,
dep_gtk4,
]

sources = files(
'src/plugin.vala',
'src/register_plugin.vala',
)

lib_phone_ringer = shared_library('phone-ringer', sources, name_prefix: '', dependencies: dependencies, kwargs: install_options)
dep_phone_ringer = declare_dependency(link_with: lib_phone_ringer, include_directories: include_directories('.'))

0 comments on commit 8a14457

Please sign in to comment.