2019-03-04 22:22:38 +00:00
|
|
|
platform_lib = static_library(
|
|
|
|
'platform',
|
2018-11-07 21:40:39 +00:00
|
|
|
include_directories : inc,
|
|
|
|
implicit_include_directories : false,
|
2019-05-02 01:17:30 +00:00
|
|
|
c_pch : '../precompiled.h',
|
2018-11-07 21:40:39 +00:00
|
|
|
dependencies : [
|
|
|
|
capnhook.get_variable('hook_dep'),
|
2019-12-22 21:38:37 +00:00
|
|
|
shlwapi_lib,
|
2018-11-07 21:40:39 +00:00
|
|
|
],
|
|
|
|
sources : [
|
2019-05-14 22:03:25 +00:00
|
|
|
'amvideo.c',
|
|
|
|
'amvideo.h',
|
2019-10-15 03:18:18 +00:00
|
|
|
'clock.c',
|
|
|
|
'clock.h',
|
2019-05-18 00:20:38 +00:00
|
|
|
'config.c',
|
|
|
|
'config.h',
|
2019-09-04 17:43:15 +00:00
|
|
|
'dns.c',
|
|
|
|
'dns.h',
|
2018-11-08 15:17:47 +00:00
|
|
|
'hwmon.c',
|
|
|
|
'hwmon.h',
|
2020-10-07 17:27:23 +00:00
|
|
|
'hwreset.c',
|
|
|
|
'hwreset.h',
|
2019-05-18 03:14:08 +00:00
|
|
|
'misc.c',
|
|
|
|
'misc.h',
|
2019-11-02 17:28:55 +00:00
|
|
|
'netenv.c',
|
|
|
|
'netenv.h',
|
2018-11-08 14:24:32 +00:00
|
|
|
'nusec.c',
|
|
|
|
'nusec.h',
|
2019-05-18 03:10:09 +00:00
|
|
|
'pcbid.c',
|
|
|
|
'pcbid.h',
|
|
|
|
'platform.c',
|
|
|
|
'platform.h',
|
2019-05-18 03:11:51 +00:00
|
|
|
'vfs.c',
|
|
|
|
'vfs.h',
|
2018-11-07 21:40:39 +00:00
|
|
|
],
|
|
|
|
)
|