Port to GTK4, start implementation of Local Music view, Artist and Album Views.

This commit is contained in:
Joshua Strobl 2021-02-24 20:17:18 +02:00
parent 8948a8ec9f
commit 588a68b2cc
28 changed files with 1103 additions and 270 deletions

View file

@ -1,14 +1,19 @@
add_project_arguments('-Db_sanitize=address', language: 'c')
koto_sources = [
'indexer/album.c',
'indexer/artist.c',
'indexer/file.c',
'indexer/file-indexer.c',
'pages/music/album-view.c',
'pages/music/artist-view.c',
'pages/music/music-local.c',
'main.c',
'koto-button.c',
'koto-expander.c',
'koto-headerbar.c',
'koto-nav.c',
'koto-playerbar.c',
'koto-track-item.c',
'koto-utils.c',
'koto-window.c',
]
@ -16,7 +21,7 @@ koto_sources = [
koto_deps = [
dependency('glib-2.0', version: '>= 2.66'),
dependency('gio-2.0', version: '>= 2.66'),
dependency('gtk+-3.0', version: '>= 3.24'),
dependency('gtk4', version: '>= 4.0'),
dependency('libmagic', version: '>=5.39'),
dependency('taglib_c', version: '>=1.11'),
]