2024-10-12 20:52:29 +00:00
|
|
|
audrey_sources = [
|
2024-10-29 09:48:40 +00:00
|
|
|
'application.c',
|
|
|
|
'globalconf.c',
|
|
|
|
'mpris.c',
|
|
|
|
'playbin.c',
|
|
|
|
'subsonic.c',
|
|
|
|
'ui/play_queue.c',
|
|
|
|
'ui/playbar.c',
|
|
|
|
'ui/setup.c',
|
|
|
|
'ui/window.c',
|
2024-10-06 11:21:53 +00:00
|
|
|
]
|
|
|
|
|
2024-10-12 20:52:29 +00:00
|
|
|
audrey_deps = [
|
2024-10-15 20:54:42 +00:00
|
|
|
dependency('gtk4', version: '>= 4.16'),
|
|
|
|
dependency('json-glib-1.0', version: '>= 1.10'),
|
|
|
|
dependency('libadwaita-1', version: '>= 1.6'),
|
2024-10-15 21:57:00 +00:00
|
|
|
dependency('libgcrypt', version: '>= 1.11'),
|
2024-10-15 21:33:33 +00:00
|
|
|
dependency('libsecret-1', version: '>= 0.21'),
|
2024-10-15 20:54:42 +00:00
|
|
|
dependency('libsoup-3.0', version: '>= 3.6'),
|
2024-10-17 10:05:20 +00:00
|
|
|
dependency('mpv', version: '>= 2.3'),
|
2024-10-06 11:21:53 +00:00
|
|
|
]
|
|
|
|
|
2024-10-29 10:37:15 +00:00
|
|
|
audrey_c = static_library(
|
2024-10-15 20:51:13 +00:00
|
|
|
'audrey',
|
|
|
|
audrey_sources,
|
2024-10-12 20:52:29 +00:00
|
|
|
dependencies: audrey_deps,
|
2024-10-06 11:21:53 +00:00
|
|
|
include_directories: config_inc,
|
2024-10-15 20:51:13 +00:00
|
|
|
install: true,
|
2024-10-06 11:21:53 +00:00
|
|
|
)
|