micetools/src/micetools/util/meson.build

104 lines
1.7 KiB
Meson
Raw Normal View History

2022-10-30 17:33:02 +00:00
executable(
'micedump',
win_subsystem: subsystem,
sources: [
'micedump/main.c',
'micedump/dmi.c',
'micedump/eeprom.c',
'micedump/kc_mxkeychip.c',
# 'micedump/kc_n2.c',
2023-03-13 21:49:07 +00:00
'micedump/kc_pic.c',
'micedump/platform.c',
'micedump/sram.c',
# 'micedump/superio.c',
'micedump/cmos.c',
2022-10-30 17:33:02 +00:00
],
link_with: [
2022-12-24 03:04:04 +00:00
mxklib,
amiTimer,
amOemstring,
amEeprom,
amSram,
amPlatform,
amDongle,
amSerialId,
amCmos,
2022-10-30 17:33:02 +00:00
],
)
executable(
'micetinker',
win_subsystem: subsystem,
sources: [
'micetinker.c',
],
link_with: [
amiTimer,
amEeprom,
2022-10-30 17:33:02 +00:00
],
)
2023-02-10 04:22:16 +00:00
executable(
'exio_test',
win_subsystem: subsystem,
sources: [
'exio_test.c',
],
)
executable(
'dongleDecrypt',
win_subsystem: subsystem,
sources: [
'dongleDecrypt.c',
],
link_with: [
amDongle,
amSerialId,
],
)
2023-03-28 20:08:02 +00:00
executable(
'micegbdisk',
win_subsystem: subsystem,
sources: [
'micegbdisk.c',
],
link_with: [
amiDebug,
],
)
2023-04-22 20:28:10 +00:00
executable(
'storagecraft',
win_subsystem: subsystem,
sources: [
'storagecraft.c',
],
link_with: [
amiCrc,
amiDebug,
],
)
executable(
'micereset',
win_subsystem: subsystem,
sources: [
'micereset.c',
],
link_with: [
amiTimer,
amEeprom,
amSram,
],
)
2023-07-14 19:00:52 +00:00
executable(
'mice_test',
win_subsystem: subsystem,
sources: [
'test.c',
],
link_with: [
mice_lib
],
)