segatools/nu/meson.build

33 lines
637 B
Meson
Raw Normal View History

2018-11-07 21:40:39 +00:00
nu_lib = static_library(
'nu',
include_directories : inc,
implicit_include_directories : false,
2018-11-23 23:17:02 +00:00
c_pch : [
'../precompiled.c',
'../precompiled.h',
],
2018-11-07 21:40:39 +00:00
dependencies : [
capnhook.get_variable('hook_dep'),
capnhook.get_variable('hooklib_dep'),
],
sources : [
2018-11-08 01:04:54 +00:00
'ds.c',
'ds.h',
'eeprom.c',
'eeprom.h',
'gpio.c',
'gpio.h',
2018-11-07 21:40:39 +00:00
'guid.c',
2018-11-08 19:20:48 +00:00
'jvs.c',
'jvs.h',
'hwmon.c',
'hwmon.h',
'nusec.c',
'nusec.h',
'nvram.c',
'nvram.h',
2018-11-08 01:03:25 +00:00
'sram.c',
'sram.h',
2018-11-07 21:40:39 +00:00
],
)