Fix compile errors and warnings, update readme

This commit is contained in:
spicyjpeg
2023-05-15 18:12:07 +02:00
parent e457d59bb1
commit e31da8a4a6
6 changed files with 175 additions and 132 deletions

View File

@@ -1,5 +1,7 @@
project('psxavenc', 'c', default_options: ['c_std=c11'])
libm_dep = meson.get_compiler('c').find_library('m')
ffmpeg = [
dependency('libavformat'),
dependency('libavcodec'),
@@ -21,4 +23,4 @@ executable('psxavenc', [
'psxavenc/filefmt.c',
'psxavenc/mdec.c',
'psxavenc/psxavenc.c'
], dependencies: [ffmpeg, libpsxav_dep], install: true)
], dependencies: [libm_dep, ffmpeg, libpsxav_dep], install: true)