refactor all common parts and games

This commit is contained in:
2025-04-17 19:31:37 +02:00
parent a6126bf290
commit ae3dd666f4
496 changed files with 236 additions and 344 deletions

View File

@ -0,0 +1,39 @@
platform_lib = static_library(
'platform',
include_directories : inc,
implicit_include_directories : false,
dependencies : [
capnhook.get_variable('hook_dep'),
shlwapi_lib,
],
sources : [
'amvideo.c',
'amvideo.h',
'clock.c',
'clock.h',
'config.c',
'config.h',
'dns.c',
'dns.h',
'epay.c',
'epay.h',
'hwmon.c',
'hwmon.h',
'hwreset.c',
'hwreset.h',
'misc.c',
'misc.h',
'netenv.c',
'netenv.h',
'nusec.c',
'nusec.h',
'pcbid.c',
'pcbid.h',
'platform.c',
'platform.h',
'vfs.c',
'vfs.h',
'system.c',
'system.h',
],
)