forked from Dniel97/segatools
24 lines
488 B
Meson
24 lines
488 B
Meson
platform_lib = static_library(
|
|
'platform',
|
|
include_directories : inc,
|
|
implicit_include_directories : false,
|
|
c_pch : '../precompiled.h',
|
|
dependencies : [
|
|
capnhook.get_variable('hook_dep'),
|
|
],
|
|
sources : [
|
|
'amvideo.c',
|
|
'amvideo.h',
|
|
'config.c',
|
|
'config.h',
|
|
'hwmon.c',
|
|
'hwmon.h',
|
|
'nusec.c',
|
|
'nusec.h',
|
|
'pcbid.c',
|
|
'pcbid.h',
|
|
'platform.c',
|
|
'platform.h',
|
|
],
|
|
)
|