mirror of
https://github.com/pret/pokeplatinum.git
synced 2026-04-25 07:29:01 -05:00
17 lines
278 B
Meson
17 lines
278 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
|
|
) |