forked from Hay1tsme/segatools
6d933eb8f4
Easier to type and more consistent with its identifiers.
29 lines
550 B
Meson
29 lines
550 B
Meson
amex_lib = static_library(
|
|
'amex',
|
|
include_directories : inc,
|
|
implicit_include_directories : false,
|
|
c_pch : '../precompiled.h',
|
|
dependencies : [
|
|
capnhook.get_variable('hook_dep'),
|
|
],
|
|
sources : [
|
|
'amex.c',
|
|
'amex.h',
|
|
'config.c',
|
|
'config.h',
|
|
'ds.c',
|
|
'ds.h',
|
|
'eeprom.c',
|
|
'eeprom.h',
|
|
'gpio.c',
|
|
'gpio.h',
|
|
'guid.c',
|
|
'jvs.c',
|
|
'jvs.h',
|
|
'nvram.c',
|
|
'nvram.h',
|
|
'sram.c',
|
|
'sram.h',
|
|
],
|
|
)
|