Merge branch 'v0.23.x'

This commit is contained in:
Max Kellermann 2025-03-11 12:52:05 +01:00
commit 4b85bb57cc
2 changed files with 4 additions and 4 deletions

View File

@ -161,7 +161,7 @@ This section is about the latter.
You need:
* `mingw-w64 <http://mingw-w64.org/doku.php>`__
* `Meson 0.56.0 <http://mesonbuild.com/>`__ and `Ninja
* `Meson 1.0.0 <http://mesonbuild.com/>`__ and `Ninja
<https://ninja-build.org/>`__
* cmake
* pkg-config

View File

@ -1,11 +1,11 @@
fs = import('fs')
project(
'libid3tag', 'c',
version: '0.15.1b',
license: 'GPLv2+',
)
fs = import('fs')
compiler = meson.get_compiler('c')
conf = configuration_data()
@ -36,6 +36,6 @@ copy = fs.copyfile('id3tag.h', 'include/id3tag.h')
libid3tag_dep = declare_dependency(
link_with: libid3tag,
dependencies: [copy]
dependencies: [copy],
include_directories: include_directories('include'),
)