mirror of
https://github.com/pret/pokeplatinum.git
synced 2026-03-30 06:05:53 -05:00
20 lines
336 B
Meson
20 lines
336 B
Meson
project('libsyscall', ['c', 'nasm'])
|
|
|
|
asm_args = [
|
|
'-proc', 'arm5TE',
|
|
'-16',
|
|
'-gccinc'
|
|
]
|
|
|
|
libsyscall = static_library('syscall',
|
|
sources: 'asm/_secure.s',
|
|
nasm_args: asm_args,
|
|
pic: false
|
|
)
|
|
|
|
libsyscall_dep = declare_dependency(
|
|
link_with: libsyscall
|
|
)
|
|
|
|
meson.override_dependency('libsyscall', libsyscall_dep)
|