tools: move midievent to separate file

This commit is contained in:
Wim Taymans 2025-08-28 15:45:06 +02:00
parent 1ce85ee2ae
commit ddc5c17163
7 changed files with 571 additions and 546 deletions

View file

@ -5,7 +5,7 @@ tools_sources = [
[ 'pw-dot', [ 'pw-dot.c' ] ],
[ 'pw-dump', [ 'pw-dump.c' ] ],
[ 'pw-profiler', [ 'pw-profiler.c' ] ],
[ 'pw-mididump', [ 'pw-mididump.c', 'midifile.c' ] ],
[ 'pw-mididump', [ 'pw-mididump.c', 'midifile.c', 'midievent.c' ] ],
[ 'pw-metadata', [ 'pw-metadata.c' ] ],
[ 'pw-loopback', [ 'pw-loopback.c' ] ],
[ 'pw-link', [ 'pw-link.c' ] ],
@ -48,6 +48,7 @@ if get_option('pw-cat').allowed() and sndfile_dep.found()
pwcat_sources = [
'pw-cat.c',
'midifile.c',
'midievent.c',
'dfffile.c',
'dsffile.c',
]