feat: add shims

This commit is contained in:
Tropical
2026-03-14 21:06:36 -05:00
parent 8187fc5cf8
commit 3a68e859ad
4 changed files with 406 additions and 6 deletions

View File

@@ -114,8 +114,11 @@ patched_relocations = custom_target(
],
)
libshiggy = static_library(
'shiggy',
meson.project_source_root() / 'src' / 'shims.c',
objects: patched_relocations,
)
shiggy = declare_dependency(
sources: static_library(
'shiggy',
meson.project_source_root() / 'src' / 'shims.c',
include_directories : include_directories('include'),
objects: patched_relocations,
)
)