micetools/src/micetools/lib/mice/meson.build

16 lines
254 B
Meson
Raw Normal View History

2022-06-13 03:22:52 +00:00
mice_lib = static_library(
'mice',
sources: [
'exe.c',
2023-03-28 20:08:02 +00:00
'log.c',
'patch.c',
2022-07-02 15:07:54 +00:00
'ringbuf.c',
2022-12-24 03:04:04 +00:00
'config.c',
2022-06-13 03:22:52 +00:00
],
link_with: [
2022-12-24 03:04:04 +00:00
inih.get_variable('lib_inih'),
util_lib,
amiCrc,
],
2022-06-13 03:22:52 +00:00
)