xwim/src/meson.build

15 lines
379 B
Meson
Raw Normal View History

src = ['main.cpp',
'archive.cpp',
'archive_sys.cpp']
2020-02-16 03:20:12 +01:00
inc = ['archive.hpp',
'spec.hpp',
'archive_sys.hpp',
'fileformats.hpp']
2020-02-16 03:20:12 +01:00
libs = [dependency('libarchive', required: true),
2020-02-23 20:56:29 +01:00
dependency('fmt', required: true, static: true),
dependency('spdlog', required: true, static: true)]
2020-02-16 03:20:12 +01:00
executable('xwim', src, inc, dependencies: libs)