xbltools/meson.build

18 lines
226 B
Meson
Raw Permalink Normal View History

project('xbltools', 'c')
cc = meson.get_compiler('c')
deps = [
]
inc = [
]
src = [
'unpackxbl.c',
]
executable('unpackxbl', src,
include_directories: inc,
dependencies: deps,
install: true)