Files
patchelf/meson.build
John Ericson 03746bff2c Backport infra improvements from master to 0.15
This is the version currently used in Nixpkgs as the stable version, so
I am interested in seeing it be developable, even as the hope is to move
to a newer version.
2025-08-12 14:54:44 -04:00

32 lines
591 B
Meson

project(
'patchelf',
'cpp',
'c',
version : files('version'),
default_options : {
'cpp_std' : 'c++17',
'warning_level' : '2',
},
meson_version : '>=1.2',
)
subdir('src')
#subdir('tests') # TODO
install_man('patchelf.1')
#specfile = configure_file(
# output : 'patchelf.spec',
# configuration : {'PACKAGE_VERSION' : meson.project_version()},
#)
# Commented things out should only be for `meson dist`. Need to
# reimplement for that.
install_data(
'README.md',
#'COPYING',
#specfile,
#'version',
install_dir : get_option('datadir') / 'doc' / 'patchelf',
)