1
0
mirror of https://gitea.tendokyu.moe/Dniel97/segatools.git synced 2025-01-10 07:41:46 +01:00

39 lines
769 B
Meson
Raw Normal View History

platform_lib = static_library(
'platform',
2018-11-07 16:40:39 -05:00
include_directories : inc,
implicit_include_directories : false,
c_pch : '../precompiled.h',
2018-11-07 16:40:39 -05:00
dependencies : [
capnhook.get_variable('hook_dep'),
shlwapi_lib,
2018-11-07 16:40:39 -05:00
],
sources : [
'amvideo.c',
'amvideo.h',
2019-10-14 23:18:18 -04:00
'clock.c',
'clock.h',
'config.c',
'config.h',
2019-09-04 13:43:15 -04:00
'dns.c',
'dns.h',
2023-09-15 01:35:33 -04:00
'epay.c',
'epay.h',
'hwmon.c',
'hwmon.h',
'hwreset.c',
'hwreset.h',
'misc.c',
'misc.h',
'netenv.c',
'netenv.h',
'nusec.c',
'nusec.h',
2019-05-17 23:10:09 -04:00
'pcbid.c',
'pcbid.h',
'platform.c',
'platform.h',
'vfs.c',
'vfs.h',
2018-11-07 16:40:39 -05:00
],
)