micetools/src/micetools/util/meson.build

84 lines
1.4 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',
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,
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
],
)
executable(
'micemonitor',
win_subsystem: subsystem,
sources: [
'micemonitor.c',
],
)
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,
],
)
executable(
'testBin',
win_subsystem: subsystem,
sources: [
'test.c',
],
)
2023-03-28 20:08:02 +00:00
executable(
'micegbdisk',
win_subsystem: subsystem,
sources: [
'micegbdisk.c',
],
link_with: [
amiDebug,
],
)