psp2name/subprojects/isoinfo/meson.build
King_DuckZ c2db22734b Import cdrtools-3.02/mkisofs/diag/isoinfo.c and dependencies.
It doesn't compile, this is the unmodified upstream version.
2020-03-03 11:55:06 +01:00

20 lines
427 B
Meson

project('isoinfo', 'c',
version: '3.0.2',
default_options: ['c_std=c99']
)
c_compiler = meson.get_compiler('c')
cdrdeflt_dep = c_compiler.find_library('cdrdeflt')
public_inc = include_directories('include')
libisoinfo = static_library(meson.project_name(),
'src/isoinfo.c',
dependencies: [cdrdeflt_dep],
install: false,
)
libisoinfo_dep = declare_dependency(
include_directories: public_inc,
link_with: libisoinfo
)