2019-03-04 17:22:38 -05:00
|
|
|
amex_lib = static_library(
|
|
|
|
'amex',
|
2018-11-07 16:40:39 -05:00
|
|
|
include_directories : inc,
|
|
|
|
implicit_include_directories : false,
|
2019-05-01 21:17:30 -04:00
|
|
|
c_pch : '../precompiled.h',
|
2018-11-07 16:40:39 -05:00
|
|
|
dependencies : [
|
|
|
|
capnhook.get_variable('hook_dep'),
|
|
|
|
],
|
|
|
|
sources : [
|
2019-05-04 12:04:38 -04:00
|
|
|
'amex.c',
|
|
|
|
'amex.h',
|
2019-05-15 20:08:35 -04:00
|
|
|
'config.c',
|
|
|
|
'config.h',
|
2018-11-07 20:04:54 -05:00
|
|
|
'ds.c',
|
|
|
|
'ds.h',
|
2018-11-07 16:45:48 -05:00
|
|
|
'eeprom.c',
|
|
|
|
'eeprom.h',
|
2018-11-08 10:15:34 -05:00
|
|
|
'gpio.c',
|
|
|
|
'gpio.h',
|
2018-11-07 16:40:39 -05:00
|
|
|
'guid.c',
|
2018-11-08 14:20:48 -05:00
|
|
|
'jvs.c',
|
|
|
|
'jvs.h',
|
2018-11-07 16:41:31 -05:00
|
|
|
'nvram.c',
|
|
|
|
'nvram.h',
|
2018-11-07 20:03:25 -05:00
|
|
|
'sram.c',
|
|
|
|
'sram.h',
|
2018-11-07 16:40:39 -05:00
|
|
|
],
|
|
|
|
)
|