2020-02-25 22:01:31 +01:00
|
|
|
xwim_src = ['main.cpp',
|
|
|
|
'archive.cpp',
|
|
|
|
'archive_sys.cpp']
|
2020-02-23 15:20:47 +01:00
|
|
|
|
2020-02-25 22:01:31 +01:00
|
|
|
xwim_inc = ['archive.hpp',
|
|
|
|
'spec.hpp',
|
|
|
|
'archive_sys.hpp',
|
|
|
|
'fileformats.hpp']
|
2020-02-16 03:20:12 +01:00
|
|
|
|
2020-02-25 22:01:31 +01:00
|
|
|
xwim_libs = [dependency('libarchive', required: true),
|
|
|
|
dependency('fmt', required: true),
|
|
|
|
dependency('spdlog', required: true)]
|
2020-02-16 03:20:12 +01:00
|
|
|
|
2020-02-25 22:01:31 +01:00
|
|
|
executable('xwim', xwim_src, xwim_inc, dependencies: xwim_libs)
|