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'),
|
|
|
|
],
|
|
|
|
sources : [
|
2019-05-15 00:03:25 +02:00
|
|
|
'amvideo.c',
|
|
|
|
'amvideo.h',
|
2019-05-18 02:20:38 +02:00
|
|
|
'config.c',
|
|
|
|
'config.h',
|
2018-11-08 16:17:47 +01:00
|
|
|
'hwmon.c',
|
|
|
|
'hwmon.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',
|
2018-11-07 22:40:39 +01:00
|
|
|
],
|
|
|
|
)
|