37 lines
714 B
Meson
37 lines
714 B
Meson
platform_lib = static_library(
|
|
'platform',
|
|
include_directories : inc,
|
|
implicit_include_directories : false,
|
|
c_pch : '../precompiled.h',
|
|
dependencies : [
|
|
capnhook.get_variable('hook_dep'),
|
|
shlwapi_lib,
|
|
cfgmgr32_lib,
|
|
],
|
|
link_with : [
|
|
board_lib
|
|
],
|
|
sources : [
|
|
'platform.c',
|
|
'platform.h',
|
|
'config.c',
|
|
'config.h',
|
|
'locale.c',
|
|
'locale.h',
|
|
'netenv.c',
|
|
'netenv.h',
|
|
'clock.c',
|
|
'clock.h',
|
|
'dns.c',
|
|
'dns.h',
|
|
'jvs.c',
|
|
'jvs.h',
|
|
'misc.c',
|
|
'misc.h',
|
|
'vfs.c',
|
|
'vfs.h',
|
|
'es3sec.c',
|
|
'es3sec.h',
|
|
],
|
|
)
|