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