mirror of
https://github.com/pret/pokeplatinum.git
synced 2026-04-26 00:32:20 -05:00
17 lines
318 B
Meson
17 lines
318 B
Meson
libmath_srcs = files(
|
|
'src/math.c',
|
|
'src/dgt.c',
|
|
'src/crc.c'
|
|
)
|
|
|
|
libmath = static_library('math',
|
|
sources: [libmath_srcs, fx_const_h],
|
|
c_args: [c_args, sdk_args],
|
|
dependencies: msl_dep,
|
|
include_directories: [public_includes],
|
|
c_pch: nitro_pch,
|
|
pic: false
|
|
)
|
|
|
|
nitrosdk_libs += libmath
|